import { StorageService } from '../storage/storage.service';
import type { AgentTool, ToolDescriptor, ToolInvocation, ToolResult } from './tool.types';
export declare class FileSaveTool implements AgentTool {
    private readonly storage;
    constructor(storage: StorageService);
    readonly descriptor: ToolDescriptor;
    invoke(inv: ToolInvocation): Promise<ToolResult>;
}
