/** * Tag image tool parameter validation schemas. * Defines the structure and validation rules for tagging operations. */ import { z } from 'zod'; export declare const tagImageSchema: z.ZodObject<{ imageId: z.ZodString; tag: z.ZodString; }, "strip", z.ZodTypeAny, { imageId: string; tag: string; }, { imageId: string; tag: string; }>; export type TagImageParams = z.infer; //# sourceMappingURL=schema.d.ts.map