import React from 'react';
import { Hospital } from "../../../care/interfaces/types";
import { LocaleType } from "../../../types";
export type Props = {
    hospital: Hospital;
    className?: string;
    hasNoCard?: boolean;
    isFullWidth?: boolean;
    isUsingEmbedMap?: boolean;
    height?: number;
    width?: number;
    isCardFloating?: boolean;
    distance?: number;
    isLoggedIn?: boolean;
    locale: LocaleType;
    googleMapKey: string;
    dataEventCategory: string;
    dataEventAction: string;
    dataEventLabel: string;
    onPhoneHospital?: () => void;
};
declare const Map: (props: Props) => React.JSX.Element;
export { Map };
