import { z } from "zod"; import { type WebhookRule } from "../webhooks/webhookRules.js"; export declare const addWebhookPatternInputSchema: z.ZodObject<{ id: z.ZodString; pattern: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; pattern: string; }, { id: string; pattern: string; }>; export type AddWebhookPatternInput = z.infer; export declare function addWebhookPattern(input: AddWebhookPatternInput, userId: string): Promise; //# sourceMappingURL=addWebhookPattern.d.ts.map