/** * Interactive prompts, themed once. * * `@inquirer/prompts` replaced the legacy `inquirer` package: it is the same * author's modular rewrite, roughly half the dependency tree, and — the reason * it was chosen over the alternatives — it exposes a `theme` option, so the * cursor, the prefix and the selected-item highlight can be brand coloured * instead of whatever the library ships. * * Every prompt in the CLI goes through here so that theme is applied in one * place rather than being passed at each of the seven call sites. */ import { checkbox as baseCheckbox, confirm as baseConfirm, input as baseInput, search as baseSearch, select as baseSelect } from '@inquirer/prompts'; type Options = Omit; export declare function input(options: Options[0]>): Promise; export declare function confirm(options: Options[0]>): Promise; export declare function select(options: Options>[0]>): Promise; export declare function checkbox(options: Options>[0]>): Promise; export declare function search(options: Options>[0]>): Promise; export {};