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