import { default as React } from 'react';
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) => React.JSX.Element;
export {};
