/** * Given a directory path, makes the directory and all the subdirectories required. * * @param directory */ export declare const makeDirectorySync: (directory: string) => void; export declare const obliterateDirectory: (target: string) => Promise;