import React from 'react'; import { Props } from 'react-select'; export interface SelectProps extends Props { /** Overwrite className */ className?: string; /** Disabled state */ disabled?: boolean; /** Error option */ error?: string | boolean; /** Text to be displayed representing the option */ label?: string; /** [react-select] Array of options that populate the select menu */ options?: any[]; /** [react-select] Placeholder for the select value */ placeholder?: string; /** [react-select] The value of the select; reflected by the selected option */ value?: any; /** [react-select] Handle change events on the select */ onChange?: (e: any) => void; /** [react-select] Handle change events on the input */ onInputChange?: (e: any) => void; } declare const Select: React.FC; export default Select;