import { Plugin } from '@design-systems/plugin'; export interface CleanArgs { /** Do not delete the node_modules */ noModules?: boolean; /** Don't delete the built dist directories */ noDist?: boolean; } /** A plugin to reset a project back to a clean starting state. */ export default class CleanPlugin implements Plugin { run(args?: CleanArgs): Promise; } //# sourceMappingURL=index.d.ts.map