jslib-nightly
Version:
SheerID JavaScript Library
11 lines (10 loc) • 402 B
TypeScript
import { FormSelectChoice } from '../../../../lib/types/types';
interface InputSelectListProps {
getItemProps: any;
getMenuProps: any;
highlightedIndex: number;
itemToString: any;
options: FormSelectChoice[];
}
export declare const InputSelectListComponent: ({ getItemProps, getMenuProps, highlightedIndex, options, itemToString, }: InputSelectListProps) => JSX.Element;
export {};