declare type FileStat = { path: string; bytes: number; }; declare const getFileStats: (filepPatterns: string[]) => Promise; declare const getReadableFileSize: (bytes: number, decimals?: number) => string; declare const parseReadableFileSize: (str: string) => number; export { FileStat, getFileStats, getReadableFileSize, parseReadableFileSize };