/// export declare function fileExists(path: string): Promise; export declare function fileExistsSync(path: string): boolean; export declare function realpath(path: string): Promise; export declare function readFile(filePath: string, encoding?: BufferEncoding): Promise; export declare function writeFile(filePath: string, content: string, encoding?: BufferEncoding): Promise; export declare function mkdir(filePath: string): Promise; export declare function callsites(): { getFileName(): string | null; }[]; export declare function dirName(): string | null;