import { z } from 'zod'; import type { ToolHandler } from '../tool.js'; import type { FilesystemProvider } from './provider.js'; export declare const toolInfo: { readonly name: "removeFile"; readonly description: "Remove a file at the specified path."; readonly parameters: z.ZodObject<{ path: z.ZodString; }, z.core.$strip>; }; export declare const handler: ToolHandler; declare const _default: { handler: ToolHandler<{ readonly name: "removeFile"; readonly description: "Remove a file at the specified path."; readonly parameters: z.ZodObject<{ path: z.ZodString; }, z.core.$strip>; }, FilesystemProvider>; name: "removeFile"; description: "Remove a file at the specified path."; parameters: z.ZodObject<{ path: z.ZodString; }, z.core.$strip>; }; export default _default;