import { ReactElement } from 'react'; import { Notification } from '@fridaygame/client'; import { WrapperProps } from '@cezembre/fronts'; export interface NotificationThumbnailProps extends WrapperProps { notification: Notification; colored?: boolean; } export declare function NotificationThumbnail({ notification, colored, onClick, type, to, target, href, }: NotificationThumbnailProps): ReactElement;