UNPKG

rui-react

Version:
14 lines (13 loc) 436 B
import React, { CSSProperties } from "react"; interface OptionListProps { suggestions: string[]; visible: boolean; clearSuggestions: () => void; candidateIndex: number; handleSelect: (val: string) => void; isLoading: boolean; className: string; style?: CSSProperties; } export declare const OptionList: React.ForwardRefExoticComponent<OptionListProps & React.RefAttributes<HTMLUListElement>>; export {};