/** * File writing tool */ import { BaseTool } from './base'; import type { ToolResult } from '../types'; export interface WriteParams { filePath: string; content: string; encoding?: string; createDirs?: boolean; } /** * Tool for writing files to the filesystem */ export declare class WriteTool extends BaseTool { constructor(); validateParams(params: Record): boolean; execute(params: Record): Promise; getParameterSchema(): Record; getUsageExamples(): string[]; } //# sourceMappingURL=write.d.ts.map