/** * 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; workspacePath: z.ZodOptional; }, "strip", z.ZodTypeAny, { imageId: string; tag: string; workspacePath?: string | undefined; }, { imageId: string; tag: string; workspacePath?: string | undefined; }>; export type TagImageParams = z.infer; //# sourceMappingURL=schema.d.ts.map