export declare function ensureDir(dirPath: string): Promise; export declare function exists(filePath: string): Promise; export declare function readJsonFile(filePath: string): Promise; export declare function writeJsonFile(filePath: string, value: unknown): Promise; export declare function appendJsonArrayItem(filePath: string, value: T): Promise; export declare function readTextFile(filePath: string): Promise; export declare function writeTextFile(filePath: string, value: string): Promise; //# sourceMappingURL=fs.d.ts.map