import { FunctionComponent, SelectHTMLAttributes } from "react"; import { BindingProps } from "../../types"; declare type NativeSelectProps = SelectHTMLAttributes; declare type SelectProps = NativeSelectProps & BindingProps; declare const Select: FunctionComponent; export default Select;