import { Uri } from 'vscode'; export declare function exists(pathOrUri: string | Uri): Promise; export declare function readFile(pathOrUri: string | Uri): Promise; export declare function writeFile(pathOrUri: string | Uri, content: string): Promise; export declare function mkdir(pathOrUri: string | Uri): Promise; export declare function deleteFile(pathOrUri: string | Uri): Promise; export declare function ensureParentExists(uri: Uri): Promise; //# sourceMappingURL=fsUtil.d.ts.map