import type { Interactivity } from '../args/parse.js'; /** * Resolve a command path to a full command, prompting to complete it when * interactive. `commands` is every selectable command path, from the * registry's spec. */ export declare function interactForCommandSelection(commandPath: string[], helpers: { commands: string[][]; interactivity: Interactivity; }): Promise;