import { SCNotificationIncubatorType } from '@selfcommunity/types';
import { NotificationItemProps } from '../../../shared/NotificationItem';
export interface NotificationIncubatorApprovedProps extends Pick<NotificationItemProps, Exclude<keyof NotificationItemProps, 'image' | 'disableTypography' | 'primary' | 'primaryTypographyProps' | 'secondary' | 'secondaryTypographyProps' | 'actions' | 'footer' | 'isNew'>> {
    /**
     * Notification obj
     * @default null
     */
    notificationObject: SCNotificationIncubatorType;
}
export default function IncubatorApprovedNotification(props: NotificationIncubatorApprovedProps): JSX.Element;
