import { ICommentCard } from './CommentCard.container';
import { TranslateFuncType } from '../../util/models';
type ICommentCardContent = Pick<ICommentCard, 'maxLines' | 'message' | 'attachments' | 'tags' | 'metadata' | 'tagging' | 'onTagCancel' | 'highlight' | 'selected' | 'replies' | 'mode' | 'richTextConfig' | 'onEditSave' | 'onLayoutChange'> & {
    multiRowRef?: React.RefObject<HTMLSpanElement>;
    expanded?: boolean;
    expandable?: boolean;
    onExpandClick: (e: any) => void;
    t: TranslateFuncType;
};
export declare const CommentCardContent: (props: ICommentCardContent) => import("react/jsx-runtime").JSX.Element;
export {};
