import React, { ReactNode, SelectHTMLAttributes } from 'react'; export interface SelectProps extends SelectHTMLAttributes { /** * List of HTML options */ children: ReactNode; /** * Icon type - defaults to chevronDown */ icon?: 'chevronDown' | 'sort'; /** * Boolean whether it has a warning */ warning?: boolean; /** * Boolean whether it has an error */ error?: boolean; } declare const Select: React.ForwardRefExoticComponent>; export default Select;