export declare const exists: (path: string) => Promise; export declare function mapAsync(array: T[], callbackfn: (value: T, index: number, array: T[]) => Promise): Promise; export declare function filterAsync(array: T[], callbackfn: (value: T, index: number, array: T[]) => Promise): Promise; export declare const isDirectory: (source: string) => Promise; export declare const getDirectories: (source: string) => Promise; export declare const getFiles: (dirPath: string, pattern: RegExp) => Promise;