import * as React from 'react'; import { FormTypes, GeoscapeTypes } from '@oneblink/types'; import { FormElementValueChangeHandler } from '../../types/form'; type ReverseGeocodeContextValue = { isReverseGeocoding: boolean; reverseGeocodingErrorMsg?: string; }; export default function ReverseGeocode({ value, element, onChange, children, }: React.PropsWithChildren<{ value: unknown; element: FormTypes.LocationElement; onChange: FormElementValueChangeHandler; }>): import("react/jsx-runtime").JSX.Element; export declare function useReverseGeocodeContext(): ReverseGeocodeContextValue; export {};