import { Tool } from '@agenite/tool';
interface FileSystemInput {
    operation: 'read' | 'write' | 'list' | 'exists' | 'mkdir';
    path: string;
    content?: string;
}
export declare function createFileSystemTool(): Tool<FileSystemInput>;
export {};
//# sourceMappingURL=file-system.d.ts.map