/** Minimal row shape. Screens pass their own MenuItem-like arrays — any object * with a string `value` (used as the React key), a `label`, and an optional * `hint` is structurally compatible. */ interface SelectableRow { value: string; label: string; hint?: string; } export declare function SelectableList({ items, cursor, }: { items: readonly SelectableRow[]; cursor: number; }): import("react/jsx-runtime").JSX.Element; export {};