import { z } from 'zod'; export declare const AnnotationSummarySchema: 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>; }, z.core.$strip>; export type AnnotationSummaryInput = z.input; export type AnnotationSummaryModel = z.infer; //# sourceMappingURL=annotation-summary.schema.d.ts.map