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 {};
