import * as React from "react"; declare type Props = { id: string; value: string; withIcon?: boolean; onSelect: (value: string) => void; error: string; }; declare type State = { open: boolean; }; export default class IataPicker extends React.PureComponent { state: { open: boolean; }; static defaultProps: { withIcon: boolean; }; handleInputChange: (ev: React.SyntheticEvent) => void; handleSelect: (value: string) => void; handleFocus: () => void; handleKeyDown: (ev: React.KeyboardEvent) => void; handleClickOutside: () => void; render(): JSX.Element; } export {};