import type { ForwardRefExoticComponent, RefAttributes } from 'react';
import type { IntlShape } from 'react-intl';
export declare const getBadgeSize: (width?: number, height?: number) => "medium" | "small";
export type CommentBadgeProps = {
    badgeOffsetRight?: string;
    height?: number;
    intl: IntlShape;
    isDrafting?: boolean;
    isEditor?: boolean;
    mediaSingleElement?: HTMLElement | null;
    onClick: (e: React.MouseEvent) => void;
    onMouseEnter?: (e: React.MouseEvent) => void;
    onMouseLeave?: (e: React.MouseEvent) => void;
    status?: 'default' | 'entered' | 'active';
    width?: number;
};
export declare const CommentBadge: ForwardRefExoticComponent<CommentBadgeProps & RefAttributes<HTMLDivElement>>;
