import type { Purchase } from '../models/Purchase'; import type { CancelablePromise } from '../core/CancelablePromise'; import type { BaseHttpRequest } from '../core/BaseHttpRequest'; export declare class InvoicesService { readonly httpRequest: BaseHttpRequest; constructor(httpRequest: BaseHttpRequest); getPaymentsInvoices({ orgSlug, limit, attributes, where, last, order, includePurchases, includeCostCenter, includeWallet, includePayment, }: { orgSlug: string; limit?: number; attributes?: Array<(Array | string)>; where?: any; last?: string; order?: string; includePurchases?: boolean; includeCostCenter?: boolean; includeWallet?: boolean; includePayment?: boolean; }): CancelablePromise; }>>; }