import React from 'react';
export interface IVeltCommentBubbleProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    targetCommentElementId?: string;
    /**
     * @deprecated Use `avatar` instead
     */
    showAvatar?: boolean;
    avatar?: boolean;
    commentBubbleTargetPinHover?: boolean;
}
declare const SnippylyCommentBubble: React.FC<IVeltCommentBubbleProps>;
export default SnippylyCommentBubble;
