import { FC, ReactNode } from 'react'; import { NotificationOptions } from './NotificationsContext'; export interface NotificationProps extends NotificationOptions { id: number; component?: ReactNode; onClose: (id: number) => void; } export declare const Notification: FC;