/** * Service for removing directories and all their contents. */ export declare class RmdirCommandService { /** * Remove a directory and all its contents, including any subdirectories and files. * * @param {string} path - The path of the directory * @returns {Promise} */ run(path: string): Promise; }