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