UNPKG

@sheerid/jslib-nightly

Version:

SheerID JavaScript Library

16 lines (14 loc) 550 B
import { default as React } from 'react'; import { FormSelectChoice } from '../../../../lib/types/types'; interface InputSelectListProps { getItemProps: any; getMenuProps: any; highlightedIndex: number; itemToString: any; options: FormSelectChoice[]; ariaLabel: string; isOpen: boolean; isLoading?: boolean; } export declare const InputSelectListComponent: ({ getItemProps, getMenuProps, highlightedIndex, options, itemToString, ariaLabel, isOpen, isLoading, }: InputSelectListProps) => React.JSX.Element; export {};