import React from 'react'; import { Theme } from '../types'; export interface SelectWrapperProps { children?: React.ReactNode; icon?: React.ReactElement; onBlur?: (event: React.FocusEvent) => void; onFocus?: (event: React.FocusEvent) => void; iconTouchable?: boolean; innerRef?: (event: HTMLElement) => void; theme?: Theme; disabled?: boolean; readOnly?: boolean; error?: boolean; style?: React.CSSProperties; className?: string; syncIconColor?: boolean; color?: string; } export interface SelectWrapperState { focused: boolean; } declare const _default: React.ComponentClass & { theme?: Theme; }, any>; export default _default;