import { CoordinatePair } from '@open-formulieren/types/dist/components/map'; import { default as React } from 'react'; interface NearestAddressProps { coordinates: CoordinatePair; } /** * Retrieve and display the nearest address label for the selected coordinates. */ declare const NearestAddress: React.FC; export default NearestAddress;