import { FormSelectChoice } from '../../../../lib/types/types';
interface SelectListProps {
    getItemProps: any;
    getMenuProps: any;
    highlightedIndex: number;
    itemToString: any;
    options: FormSelectChoice[];
}
export declare const SelectListComponent: ({ getItemProps, getMenuProps, highlightedIndex, options, itemToString, }: SelectListProps) => JSX.Element;
export {};
