import { SCNotificationVoteUpType } from '@selfcommunity/types';
import { NotificationItemProps } from '../../../shared/NotificationItem';
export interface ContributionFollowProps extends Pick<NotificationItemProps, Exclude<keyof NotificationItemProps, 'image' | 'disableTypography' | 'primary' | 'primaryTypographyProps' | 'secondary' | 'secondaryTypographyProps' | 'actions' | 'footer' | 'isNew'>> {
    /**
     * Notification obj
     * @default null
     */
    notificationObject: SCNotificationVoteUpType;
}
/**
 * This component render the content of the notification of type follow (contribution)
 * @constructor
 * @param props
 */
export default function ContributionFollowNotification(props: ContributionFollowProps): JSX.Element;
