/// import { CommonProps } from './common.component'; export declare type UserAddedProps = CommonProps & { projectTitle: string; supportingTeams: string[]; risk: string; riskColor: string; progress: number; senderFullName: string; senderInitials: string; senderImage: string; recipientFullName: string; recipientInitials: string; recipientImage: string; projectOwnerFullName: string; projectOwnerStatus: string; projectParticipantCount: number; }; export declare const UserAdded: (props: UserAddedProps) => JSX.Element; export declare const UserAddedCore: (props: UserAddedProps) => JSX.Element;