import { z } from 'zod'; import { AnnotationType } from '../../enums/annotation-type.enum.js'; export declare const AnnotationInfoSchema: z.ZodObject<{ annotationId: z.ZodString; annotationType: z.ZodEnum; referenceId: z.ZodOptional; }, z.core.$strip>; export type AnnotationInfoInput = z.input; export type AnnotationInfoModel = z.infer; //# sourceMappingURL=annotation-info.schema.d.ts.map