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