import type { Tool } from 'fastmcp'; import { z } from 'zod'; declare const parameters: z.ZodObject<{ imageUrl: z.ZodString; whiteningStrength: z.ZodOptional; maxResolution: z.ZodOptional; aiReductionStrength: z.ZodOptional; }, "strip", z.ZodTypeAny, { imageUrl: string; whiteningStrength?: number | undefined; maxResolution?: number | undefined; aiReductionStrength?: number | undefined; }, { imageUrl: string; whiteningStrength?: number | undefined; maxResolution?: number | undefined; aiReductionStrength?: number | undefined; }>; type PortraitRetouchingParams = z.infer; declare const portraitRetouching: Tool>; export { portraitRetouching };