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