import { ComponentType } from 'react'; import { MapState } from 'reducers'; export declare function getUpdateVisDataPayload(lat: any, lon: any, text: any): (import("schemas").ParsedConfig | { data: { fields: import("../utils/table-utils/kepler-table").Field[]; rows: any[][]; }; id: string; info: { hidden: boolean; id: string; label: string; }; }[] | { keepExistingConfig: boolean; })[]; interface GeocoderPanelProps { isGeocoderEnabled: boolean; mapState: MapState; mapboxApiAccessToken: string; updateVisData: Function; removeDataset: Function; updateMap: Function; transitionDuration?: number; width?: number; } export default function GeocoderPanelFactory(): ComponentType; export {};