import React from 'react'; import './Select.scss'; import { ISelectProps } from './Select.types'; /** * The Select component are used for collecting user provided information from a list of options. */ declare const Select: React.FC; export default Select;