import React from 'react';
import { LocaleType } from "../../../../interfaces/types";
import { DoctorInfo } from "../../../interfaces/types";
export type Props = {
    isOpen: boolean;
    onClose: () => void;
    enableAnimation?: boolean;
    doctorId: string;
    locale?: LocaleType;
    isMobile?: boolean;
    overwriteProfileProps?: DoctorInfo;
    avatarFallback?: string;
    trackingCategory?: string;
};
declare const PopupDoctor: ({ isOpen, onClose, enableAnimation, doctorId, locale, isMobile, overwriteProfileProps, avatarFallback, trackingCategory, }: Props) => React.JSX.Element;
export { PopupDoctor };
