import commander from "commander"; import inquirer from "inquirer"; import { PackageManager } from "./PackageManager"; export declare namespace ArgumentParser { type Inquiry = (pack: PackageManager, command: commander.Command, prompt: (opt?: inquirer.StreamOptions) => inquirer.PromptModule, action: (closure: (options: Partial) => Promise) => Promise) => Promise; const parse: (pack: PackageManager, inquiry: (pack: PackageManager, command: commander.Command, prompt: (opt?: inquirer.StreamOptions) => inquirer.PromptModule, action: (closure: (options: Partial) => Promise) => Promise) => Promise) => Promise; }