import type { Tool } from 'fastmcp'; import { z } from 'zod'; declare const parameters: z.ZodObject<{ modelImageUrl: z.ZodString; clothImageUrl: z.ZodString; prompt: z.ZodOptional; }, "strip", z.ZodTypeAny, { modelImageUrl: string; clothImageUrl: string; prompt?: string | undefined; }, { modelImageUrl: string; clothImageUrl: string; prompt?: string | undefined; }>; type ChangeClothesParams = z.infer; declare const changeClothes: Tool>; export { changeClothes };