import { z } from "zod";
export declare const EventTypeSchema: z.ZodString;
/**
 * Common database event patterns for documents/rows
 */
export declare const DocumentEventTypeSchema: z.ZodEnum<{
    create: "create";
    update: "update";
    delete: "delete";
    upsert: "upsert";
}>;
export type EventType = string;
export type DocumentEventType = z.infer<typeof DocumentEventTypeSchema>;
