import React from 'react'; declare type PointChooserProps = { lat: string | number; lon: string | number; onBlur: (target: string, value: string) => any; }; declare type PointChooserState = { latValue: string | null; lonValue: string | null; }; declare class PointChooser extends React.Component { constructor(props: any); render(): JSX.Element; } declare const _default: import("react-redux").ConnectedComponent & PointChooserProps, "ref" | "key">>; export default _default; //# sourceMappingURL=PointChooser.d.ts.map