import rimraf from "rimraf"; /** * Asynchronously removes files and directories using `rimraf`. * * @param {string} path - The path to remove. * @param {rimraf.Options} options - The options to pass to `rimraf`. * @returns {Promise} A promise that resolves when the removal is complete. */ export declare const async: (path: string, options: rimraf.Options) => Promise;