import { AxiosInstance } from 'axios'; import { InvoiceRequestV2 } from '../../../../src/dto/invoices'; import { KeezLogger } from '../../../../src/helpers/keezLogger'; interface UpdateInvoiceParams { readonly baseDomain: string; readonly appId: string; readonly appClientId: string; readonly bearerToken: string; readonly invoiceId: string; readonly invoice: InvoiceRequestV2; readonly httpClient?: AxiosInstance; readonly logger?: KeezLogger; } export declare function apiUpdateInvoice(params: UpdateInvoiceParams): Promise; export {};