export interface FileEntry { path: string; isDirectory: boolean; } export declare function readDirRecursive(baseDir: string): Promise;