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