/** * Payments API - Auto-generated typed wrapper. * DO NOT EDIT - Regenerate with: bun run generate * @generated */ export declare const payments: { /** @see createPayment */ readonly create: (createPaymentBody: import("..").CreatePaymentBody, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see getPayments */ readonly list: (options?: (Omit & { order_by?: string | string[]; } & import("./types").SDKMethodOptions) | undefined) => Promise; /** @see getPaymentById */ readonly get: (id: string, params?: import("..").GetPaymentByIdParams | undefined, args_2?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see updatePayment */ readonly update: (id: string, updatePaymentBody: import("..").UpdatePaymentBody, args_2?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see deletePayment */ readonly delete: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see restorePayment */ readonly restorePayment: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see permanentDeletePayment */ readonly permanentDeletePayment: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; }; export type PaymentsApi = typeof payments; //# sourceMappingURL=payments.d.ts.map