import { z } from 'zod'; import { AnnotationType } from '../enums/annotation-type.enum.js'; /** * Complete Annotation entity schema as published in events. */ export declare const AnnotationEventDataSchema: z.ZodObject<{ annotationId: z.ZodString; documentId: z.ZodString; referenceId: z.ZodOptional; annotationType: z.ZodEnum; annotationData: z.ZodRecord; createdAt: z.ZodISODateTime; updatedAt: z.ZodISODateTime; }, z.core.$strip>; export type AnnotationEventDataInput = z.input; export type AnnotationEventDataModel = z.infer; //# sourceMappingURL=annotation-event-data.schema.d.ts.map