/** * RecurringInvoices API - Auto-generated typed wrapper. * DO NOT EDIT - Regenerate with: bun run generate * @generated */ export declare const recurringInvoices: { /** @see createRecurringInvoice */ readonly create: (createRecurringInvoiceBody: import("..").CreateRecurringInvoiceBody, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see getRecurringInvoices */ readonly list: (options?: (Omit & { order_by?: string | string[]; } & import("./types").SDKMethodOptions) | undefined) => Promise; /** @see getRecurringInvoiceById */ readonly get: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see updateRecurringInvoice */ readonly update: (id: string, updateRecurringInvoiceBody: import("..").UpdateRecurringInvoiceBody, args_2?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see deleteRecurringInvoice */ readonly delete: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see restoreRecurringInvoice */ readonly restoreRecurringInvoice: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see permanentDeleteRecurringInvoice */ readonly permanentDeleteRecurringInvoice: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see pauseRecurringInvoice */ readonly pauseRecurringInvoice: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see resumeRecurringInvoice */ readonly resumeRecurringInvoice: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see triggerRecurringInvoice */ readonly triggerRecurringInvoice: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; }; export type RecurringInvoicesApi = typeof recurringInvoices; //# sourceMappingURL=recurring-invoices.d.ts.map