import type { invoiceTemplate_GetInvoiceTemplateResponse } from '../models/invoiceTemplate_GetInvoiceTemplateResponse'; import type { CancelablePromise } from '../core/CancelablePromise'; export declare class InvoiceTemplatesService { /** * List invoice templates * * Returns a paginated list of the invoice templates configured for the * portal. * * @param limit Maximum number of records to return. * @param nextToken Pagination cursor returned by a previous request. * * @example * await assembly.listInvoiceTemplates(); */ static listInvoiceTemplates({ limit, nextToken, }: { /** * Maximum number of records to return. */ limit?: number; /** * Pagination cursor returned by a previous request. */ nextToken?: string; }): CancelablePromise; }