import { ServerResult } from '../types.js'; /** * Handle read_file command */ export declare function handleReadFile(args: unknown): Promise; /** * Handle read_multiple_files command */ export declare function handleReadMultipleFiles(args: unknown): Promise; /** * Handle write_file command */ export declare function handleWriteFile(args: unknown): Promise; /** * Handle create_directory command */ export declare function handleCreateDirectory(args: unknown): Promise; /** * Handle list_directory command */ export declare function handleListDirectory(args: unknown): Promise; /** * Handle move_file command */ export declare function handleMoveFile(args: unknown): Promise; /** * Handle get_file_info command */ export declare function handleGetFileInfo(args: unknown): Promise;