import { z } from 'zod'; import type { ToolHandler } from '../tool.js'; import type { FilesystemProvider } from './provider.js'; export declare const toolInfo: { readonly name: "renameFile"; readonly description: "Rename or move a file from source path to target path."; readonly parameters: z.ZodObject<{ source_path: z.ZodString; target_path: z.ZodString; }, z.core.$strip>; }; export declare const handler: ToolHandler; declare const _default: { handler: ToolHandler<{ readonly name: "renameFile"; readonly description: "Rename or move a file from source path to target path."; readonly parameters: z.ZodObject<{ source_path: z.ZodString; target_path: z.ZodString; }, z.core.$strip>; }, FilesystemProvider>; name: "renameFile"; description: "Rename or move a file from source path to target path."; parameters: z.ZodObject<{ source_path: z.ZodString; target_path: z.ZodString; }, z.core.$strip>; }; export default _default;