export * from './AccountingAppSettings';
export * from './AccountingAppUrls';
export * from './AccountingExtensionCustomer';
export * from './AccountingExtensionInvoice';
export * from './AccountingExtensionTerm';
export * from './AccountingFeatures';
export * from './ActionResponse';
export * from './Address';
export * from './CreateInvoiceFeature';
export * from './CreateInvoiceSubFeatures';
export * from './CreateUserAccountRequestExternal';
export * from './CustomerSearchResponseExternal';
export * from './ErrorDetail';
export * from './ExchangeRateResponse';
export * from './ImportInvoiceFeature';
export * from './InvoiceCreatePaymentRequest';
export * from './InvoicePdfResponse';
export * from './InvoiceReadResponse';
export * from './InvoiceSearchResponse';
export * from './InvoiceUpdateRequest';
export * from './InvoiceUpdateResponse';
export * from './InvoicesResponseExternal';
export * from './ModelError';
export * from './ObjectSyncFeature';
export * from './Product';
export * from './ProductSearchResponse';
export * from './ResultIdAccountingResponse';
export * from './SyncContactsRequest';
export * from './SyncProductsRequest';
export * from './Tax';
export * from './TaxSearchResponse';
export * from './TaxType';
export * from './TermsResponse';
export * from './UnitPrice';
export * from './UpdatedContact';
export * from './UpdatedProduct';
export declare class ObjectSerializer {
    static findCorrectType(data: any, expectedType: string): any;
    static serialize(data: any, type: string, format: string): any;
    static deserialize(data: any, type: string, format: string): any;
    static normalizeMediaType(mediaType: string | undefined): string | undefined;
    static getPreferredMediaType(mediaTypes: Array<string>): string;
    static stringify(data: any, mediaType: string): string;
    static parse(rawData: string, mediaType: string | undefined): any;
}
