import * as fs from 'fs'; export declare function listDir(dir: string): Promise<{ dir: string; name: string; fullpath: string; type: string; }[]>; export declare function type(fullpath: string): Promise<"dir" | "file" | "unknown">; export declare function isDir(path: string): Promise; declare const _default: { listDir: typeof listDir; isDir: typeof isDir; readFile: typeof fs.readFile.__promisify__; }; export default _default;