/** * Determine whether a path is a folder. */ export declare function isFolder(path: string): boolean; // export function isDirectory(path: string): boolean { // return isFolder(path) // } export declare function isDir(path: string): boolean; export declare function doesFolderExist(path: string): boolean; export declare function createFolder(dir: string): Promise; export declare function getFolders(dir: string): string[]; export declare const folders: Folders; export declare interface Folders { isFolder: (path: string) => boolean doesFolderExist: (path: string) => boolean createFolder: (dir: string) => Promise getFolders: (dir: string) => string[] }