export declare function fileExists(path: string): boolean; export declare function directoryExists(path: string): boolean; export declare function getFileList(path: string): string[]; export declare function readFile(filePath: string): string; export declare function writeFile(filePath: string, content: string): void;