interface CleanDirOptions { ignoreError?: boolean; } declare function cleanDir(dir: string, options?: CleanDirOptions): Promise; export { type CleanDirOptions, cleanDir };