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