import * as Cli from "effect/unstable/cli"; export interface SelectKeyChoice { readonly key: string; readonly title: string; readonly value: A; readonly description?: string; } export interface SelectKeyOptions { readonly message: string; readonly choices: ReadonlyArray>; readonly caseSensitive?: boolean; } export declare const selectKey: (options: SelectKeyOptions) => Cli.Prompt.Prompt; //# sourceMappingURL=select-key.d.ts.map