export type EntryKind = 'file' | 'directory' | 'symlink'; export type IFileEntry = { name: string; path: string; kind: EntryKind; size: number; modifiedMs: number; symlinkTarget?: string; symlinkTargetKind?: EntryKind; }; export declare function readDirectory(dirPath: string, options?: { showHidden?: boolean; }): Promise; export declare function getParentDirectory(dirPath: string): string; export declare function formatFileSize(bytes: number): string; //# sourceMappingURL=directory-reader.d.ts.map