import { ChangeEvent, FunctionComponent } from 'react'; declare type SelectDropdownProps = { id?: string; value: string; dropdownOptions: string[]; handleChange: (event: ChangeEvent<{ value: unknown; }>) => void; }; declare const SelectDropdown: FunctionComponent; export default SelectDropdown;