import { z } from "zod/v4"; export declare const WebhookDefaultHeaders: { "content-type": string; "user-agent": string; }; export declare const WebhookOutboundBaseSchema: z.ZodObject<{ id: z.ZodString; timestamp: z.ZodCoercedDate; type: z.ZodLiteral<"prompt-version">; apiVersion: z.ZodLiteral<"v1">; action: z.ZodEnum<{ created: "created"; updated: "updated"; deleted: "deleted"; }>; }, z.core.$strip>; export declare const PromptWebhookOutboundSchema: z.ZodIntersection; prompt: z.ZodNullable>>; type: z.ZodString; config: z.ZodRecord; commitMessage: z.ZodNullable; tags: z.ZodArray; createdAt: z.ZodCoercedDate; updatedAt: z.ZodCoercedDate; }, z.core.$strip>; }, z.core.$strip>, z.ZodObject<{ id: z.ZodString; timestamp: z.ZodCoercedDate; type: z.ZodLiteral<"prompt-version">; apiVersion: z.ZodLiteral<"v1">; action: z.ZodEnum<{ created: "created"; updated: "updated"; deleted: "deleted"; }>; }, z.core.$strip>>; export type PromptWebhookOutput = z.infer; //# sourceMappingURL=webhooks.d.ts.map