import { ReactNode } from 'react'; export interface IPageNotification { id: string; title: string; description?: ReactNode | undefined; timestamp?: string; variant?: 'success' | 'danger' | 'warning' | 'info'; to?: string; newTab?: boolean; } export declare function PageNotification(props: { notification: IPageNotification; }): import("react/jsx-runtime").JSX.Element;