import { z } from 'zod'; export declare enum TableWebhookEventType { RECORD_CREATED = "RECORD_CREATED", RECORD_UPDATED = "RECORD_UPDATED", RECORD_DELETED = "RECORD_DELETED" } export declare const TableWebhook: z.ZodObject<{ projectId: z.ZodString; tableId: z.ZodString; events: z.ZodArray>; flowId: z.ZodString; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; }, z.core.$strip>; export type TableWebhook = z.infer; //# sourceMappingURL=table-webhook.d.ts.map