import React from 'react';
import { SelectProps } from './Select.types';
/**
 * Selects are input elements with predefined selectable values.
 */
declare const Select: React.FC<SelectProps>;
export default Select;
