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