/** * Webhooks API - Auto-generated typed wrapper. * DO NOT EDIT - Regenerate with: bun run generate * @generated */ export declare const webhooks: { /** @see createWebhook */ readonly create: (createWebhookBody: import("..").CreateWebhookBody, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see getWebhooks */ readonly list: (options?: (Omit & { order_by?: string | string[]; } & import("./types").SDKMethodOptions) | undefined) => Promise; /** @see getWebhookById */ readonly get: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see updateWebhook */ readonly update: (id: string, updateWebhookBody: import("..").UpdateWebhookBody, args_2?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see deleteWebhook */ readonly delete: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see testWebhook */ readonly testWebhook: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see rotateWebhookSecret */ readonly rotateWebhookSecret: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; }; export type WebhooksApi = typeof webhooks; //# sourceMappingURL=webhooks.d.ts.map