import { Choice, PromptObject } from 'prompts'; import { MultiselectPrompt } from 'prompts/lib/elements'; export type Question = PromptObject & { selectionFormat?: string; }; /** * Customized multiselect prompt. * * Additional parameters: * * @param selectionFormat * String indicating number of selected options. Should contain `` substring. * * Example: * 'Selected devices' * * Short format is used when more than one option is selected. * **/ export default class EasMultiselect extends MultiselectPrompt { constructor(opts: Question); renderDoneOrInstructions(): string; } export declare const easMultiselect: (args: Question) => Promise;