export declare function fileExists(filepath: string): Promise; export declare function readFile(path: string): Promise<{ exists: true; contents: string; } | { exists: false; }>; export declare function readdir(path: string): Promise<{ exists: true; files: string[]; } | { exists: false; }>; //# sourceMappingURL=fs-utils.d.mts.map