import { z } from "zod"; export declare const removeWebhookInputSchema: z.ZodObject<{ id: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; }, { id: string; }>; export type RemoveWebhookInput = z.infer; export declare function removeWebhook(input: RemoveWebhookInput, userId: string): Promise<{ deleted: boolean; id: string; }>; //# sourceMappingURL=removeWebhook.d.ts.map