import { IStreamLogger } from '../PSAgentLogger'; import { PSAgentTool } from '../PSAgentTool'; export declare class PSWriteFileTool extends PSAgentTool { static readonly toolName = "write_file"; private paths; constructor(options: { paths?: string[]; }); private resolveFilePath; run(input: Record, log?: IStreamLogger): Promise>; }