import type { PrefixLog } from './prefixLog.ts'; export declare function createLoggedFs(log: PrefixLog, cwd?: string): { writeFile(path: string, content: string, encoding?: BufferEncoding): Promise; readFile(path: string, encoding?: BufferEncoding): Promise; mkdir(path: string, options?: { recursive?: boolean; }): Promise; updateJsonProperty(path: string, keys: string[], value: unknown): Promise; removeJsonProperty(path: string, keys: string[]): Promise; updateJsonPropertyRedacted(path: string, keys: string[], value: unknown): Promise; readdir(path: string): Promise; isDirectoryEmpty(path: string): Promise; access(path: string): Promise; stat(path: string): Promise; directoryExists(path: string): Promise; }; //# sourceMappingURL=createLoggedFs.d.ts.map