import type { UiTheme } from "./theme.js"; export interface MenuItem { label: string; value: T; hint?: string; disabled?: boolean; separator?: boolean; kind?: "heading"; color?: "red" | "green" | "yellow" | "cyan"; } export interface SelectOptions { message: string; subtitle?: string; help?: string; clearScreen?: boolean; variant?: "legacy" | "codex"; theme?: UiTheme; } export declare function select(items: MenuItem[], options: SelectOptions): Promise; //# sourceMappingURL=select.d.ts.map