import { z } from 'zod'; export declare const AnnotationDetailSchema: z.ZodObject<{ annotationId: z.ZodString; annotationType: z.ZodEnum; referenceId: z.ZodOptional; annotationData: z.ZodObject<{ position: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>; x: z.ZodNumber; y: z.ZodNumber; zoom: z.ZodNumber; imageUrl: z.ZodNullable>; label: z.ZodOptional; description: z.ZodOptional; href: z.ZodOptional; target: z.ZodDefault>; showLabel: z.ZodDefault>; }, z.core.$strip>; createdAt: z.ZodISODateTime; updatedAt: z.ZodISODateTime; }, z.core.$strip>; export type AnnotationDetailInput = z.input; export type AnnotationDetailModel = z.infer; //# sourceMappingURL=annotation-detail.schema.d.ts.map