import { AxiosInstance } from 'axios'; import { SendInvoiceEmailParams } from '../../../../src/dto/invoices'; import { KeezLogger } from '../../../../src/helpers/keezLogger'; interface SendInvoiceParams { readonly appId: string; readonly baseDomain: string; readonly bearerToken: string; readonly clientMail?: string; readonly emailParams?: SendInvoiceEmailParams; readonly invoiceId: string; readonly httpClient?: AxiosInstance; readonly logger?: KeezLogger; } export declare function apiSendInvoice(params: SendInvoiceParams): Promise; export {};