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