/// import { CommonProps } from './common.component'; export declare type CommentCreatedProps = CommonProps & { senderFullName: string; senderInitials: string; senderImage: string; projectTitle: string; updateTitle: string; comment: string; }; export declare const CommentCreated: (props: CommentCreatedProps) => JSX.Element; export declare const CommentCreatedCore: (props: CommentCreatedProps) => JSX.Element;