import { FC, ReactNode, JSXElementConstructor } from 'react'; import { NotificationVariants } from './NotificationsContext'; export interface NotificationComponentProps { message: string; variant: NotificationVariants; onClose?: () => void; } export interface NotificationsProps { limit?: number; timeout?: number; showClose?: boolean; preventFlooding?: boolean; children?: ReactNode; className?: string; components?: { [variant in NotificationVariants]?: JSXElementConstructor; }; } export declare const Notifications: FC;