@sheerid/jslib-nightly
Version:
SheerID JavaScript Library
15 lines (14 loc) • 549 B
TypeScript
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 {};