import React from 'react';
export interface IVeltCommentDialogThreadCardReactionsProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    defaultCondition?: boolean;
    inlineCommentSectionMode?: boolean;
    excludeReactionIds?: string[] | string;
    commentObj?: any | string;
    commentId?: number | string;
    commentIndex?: number | string;
}
declare const VeltCommentDialogThreadCardReactions: React.FC<IVeltCommentDialogThreadCardReactionsProps>;
export default VeltCommentDialogThreadCardReactions;
