/** * AccountWebhooks API - Auto-generated typed wrapper. * DO NOT EDIT - Regenerate with: bun run generate * @generated */ export declare const accountWebhooks: { /** @see createAccountWebhook */ readonly create: (createAccountWebhookBody: import("..").CreateAccountWebhookBody, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see getAccountWebhooks */ readonly list: (options?: (Omit & { order_by?: string | string[]; } & import("./types").SDKMethodOptions) | undefined) => Promise; /** @see getAccountWebhookById */ readonly get: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see updateAccountWebhook */ readonly update: (id: string, updateAccountWebhookBody: import("..").UpdateAccountWebhookBody, args_2?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see deleteAccountWebhook */ readonly delete: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see testAccountWebhook */ readonly testAccountWebhook: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see rotateAccountWebhookSecret */ readonly rotateAccountWebhookSecret: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; }; export type AccountWebhooksApi = typeof accountWebhooks; //# sourceMappingURL=account-webhooks.d.ts.map