import * as React from "react"; interface Props { error?: string; touched?: boolean; label: string; options: any[]; displayValueAccesor: string; internalValueAccesor: string; } interface State { focused: boolean; } declare class Select extends React.Component, State> { constructor(props: Props); onFocus: (event: React.FocusEvent) => void; onBlur: (_: React.FocusEvent) => void; render(): JSX.Element; } export default Select;