/** * Menu — Ink interactive selection list. * * Arrow keys to move, Enter to select, Esc to cancel. Supports * optional boxed mode (rounded border in accent color for HITL popups), * description subtext, and initialIndex for default cursor position. * Colors from centralized system (colors.ts), glyphs from glyphs.ts. */ import React from 'react'; export interface MenuItem { id: string; label: string; description?: string; disabled?: boolean; } export interface MenuProps { items: MenuItem[]; onSelect: (item: MenuItem | null) => void; onCancel?: () => void; initialIndex?: number; boxed?: boolean; title?: string; } export declare const Menu: React.FC; //# sourceMappingURL=Menu.d.ts.map