import { AxiosInstance } from 'axios'; import { AllInvoicesResponse } from '../../../../src/dto/allInvoicesResponse'; import { InvoiceFilterParams } from '../../../../src/dto/invoices'; import { KeezLogger } from '../../../../src/helpers/keezLogger'; interface GetAllInvoicesParams { readonly baseDomain: string; readonly appId: string; readonly appClientId: string; readonly bearerToken: string; readonly filterParams?: InvoiceFilterParams; readonly httpClient?: AxiosInstance; readonly logger?: KeezLogger; } export declare function apiGetAllInvoices(params: GetAllInvoicesParams): Promise; export {};