import React from 'react'; import { Option } from '../../data'; type SelectInputProps = { options: Option[]; handleInputChange: (event: React.ChangeEvent) => void; selectedValue?: string; }; export declare const SelectInput: React.FC; export {};