import type { Tool } from 'fastmcp'; import { z } from 'zod'; declare const parameters: z.ZodObject<{ productImageUrl: z.ZodString; }, "strip", z.ZodTypeAny, { productImageUrl: string; }, { productImageUrl: string; }>; type ProductImageRetouchingParams = z.infer; declare const productImageRetouching: Tool>; export { productImageRetouching };