import React from 'react';
type ArticleExpertProps = {
    isMobile: boolean;
    avatarImg: JSX.Element;
    name: React.ReactNode;
    link?: string;
    size: 'lg' | 'md' | 'sm';
    specialty: string;
    handleClick: (e: React.MouseEvent<HTMLElement, MouseEvent>) => void;
    isBookmarked: boolean;
    dataEventCategoryForBookmark?: string;
    dataEventActionForBookmark?: string;
    dataEventLabelForBookmark?: string;
};
export declare const CardExpert: ({ isMobile, avatarImg, name, link, size, specialty, }: ArticleExpertProps) => React.JSX.Element;
export {};
