type optionType = { value: string; displayValue: string; }; type prop = { value: optionType; onChange: (selected: optionType) => void; options: optionType[]; }; declare const InputSelect: ({ value, onChange, options }: prop) => import("react/jsx-runtime").JSX.Element; export default InputSelect; //# sourceMappingURL=Select.d.ts.map