import { type FC } from 'react'; import { type SelectOption, type SelectOptions } from '../../../../types/select'; type SelectOptionListProps = { options: SelectOptions; onSelectOption: (option: SelectOption) => void; className?: string; OptionComponent?: FC<{ option: SelectOption; }>; }; declare const SelectOptionList: FC; export default SelectOptionList; //# sourceMappingURL=SelectOptionList.d.ts.map