import { Argument } from "./argument.js"; import { Option } from "./option.js"; /** * Creates a new prompter instance */ export declare function prompter(baseArgs: Array, args: T): Prompter; export declare class Prompter { private baseArgs; private args; constructor(baseArgs: Array, args: T); prompt(): Promise; private getSelectLimit; /** * Returns an array of arguments and options which should be prompted, because * they are promptable (`isPromptable()` returned true) and they are not * provided in the args passed in to this function. */ private getQuestions; }