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) => import("react/jsx-runtime").JSX.Element; export {};