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