import { FC } from 'react';
export interface Props {
    value: string | undefined;
    onChange: (value: string | undefined) => void;
    error?: string;
    placeholder?: string;
    disabled?: boolean;
}
declare const AirportPicker: FC<Props>;
export default AirportPicker;
