interface SelectListItem { label: string; value: string; description?: string; } interface SelectListProps { items: SelectListItem[]; onSelect: (value: string) => void; onCancel: () => void; initialIndex?: number; /** If set, render at most this many items at once and scroll the window as the selection moves. */ windowSize?: number; } export declare function SelectList({ items, onSelect, onCancel, initialIndex, windowSize, }: SelectListProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=SelectList.d.ts.map