import { Arguments, Command, CommandConfigOptions } from "@lerna/core"; interface CleanCommandConfigOptions extends CommandConfigOptions { yes?: boolean; } export declare function factory(argv: Arguments): CleanCommand; export declare class CleanCommand extends Command { directoriesToDelete: string[]; get requiresGit(): boolean; initialize(): true | Promise; execute(): Promise; } declare const commonJsExport: typeof factory & { CleanCommand: typeof CleanCommand; }; export default commonJsExport; export { commonJsExport as "module.exports" };