/// import { ReactNode } from 'react'; export declare type NotificationType = 'default' | 'success' | 'warning' | 'danger'; export interface INotification { id: string; type: NotificationType; content: ReactNode; ttl?: number; timer?: NodeJS.Timer; }