import { ICommentCard, ICommentAuthor } from './CommentCard.container';
import { TranslateFuncType } from '../../util/models';
type ICommentCardHeader = Pick<ICommentCard, 'id' | 'author' | 'unread' | 'statusMapping' | 'canResolve' | 'resolved' | 'dateModified' | 'disableHover' | 'actions' | 'onUnresolved' | 'onResolved'> & {
    editing?: boolean;
    uniqueParticipants: ReadonlyArray<ICommentAuthor>;
    shouldStackDate?: boolean;
    hovering?: boolean;
    hasActions?: boolean;
    t: TranslateFuncType;
};
export declare const CommentCardHeader: (props: ICommentCardHeader) => import("react/jsx-runtime").JSX.Element;
export {};
