import { FC } from 'react'; export interface AddressMapProps { googleApiKey?: string; markerName?: string; position: CoordsProps; } export interface CoordsProps { latitude: number; longitude: number; } export interface GeoPositionProps { center: CoordsProps; zoom: number; } export declare const Marker: (props: any) => JSX.Element; declare const AddressMap: FC; export default AddressMap;