/// import yargs from "yargs"; import Command from "./command"; import type { CliOptions, RunCallback } from "./apm-cli"; export default class Clean extends Command { parseOptions(argv: string[]): yargs.Argv<{}>; run(options: CliOptions, callback: RunCallback): import("child_process").ChildProcessWithoutNullStreams; }