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