import { z } from 'zod'; import { AnnotationType } from '../../enums/annotation-type.enum.js'; export declare const CreateAnnotationSchema: z.ZodObject<{ annotationId: z.ZodOptional; annotationType: z.ZodEnum; 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>; referenceId: z.ZodOptional; }, z.core.$strip>; export type CreateAnnotationInput = z.input; export type CreateAnnotationDto = z.infer; //# sourceMappingURL=create-annotation.schema.d.ts.map