/** * Customers API - Auto-generated typed wrapper. * DO NOT EDIT - Regenerate with: bun run generate * @generated */ export declare const customers: { /** @see createCustomer */ readonly create: (createCustomerBody: import("..").CreateCustomerBody, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see getCustomers */ readonly list: (options?: (Omit & { order_by?: string | string[]; } & import("./types").SDKMethodOptions) | undefined) => Promise; /** @see getCustomerById */ readonly get: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see updateCustomer */ readonly update: (id: string, updateCustomerBody: import("..").UpdateCustomerBody, args_2?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see deleteCustomer */ readonly delete: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see restoreCustomer */ readonly restoreCustomer: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see permanentDeleteCustomer */ readonly permanentDeleteCustomer: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; }; export type CustomersApi = typeof customers; //# sourceMappingURL=customers.d.ts.map