import React from 'react'; export interface NotificationsProviderProps { /** Notification DOMNode for createPortal */ children: React.ReactNode; /** Valid HTML Node element, used to target `ReactDOM.createPortal`.*/ container?: HTMLElement; /** Maximum notifications that can be stacked on top of one another. */ maxNotifications?: 1 | 2 | 3 | 4 | 5; } declare const NotificationsProvider: ({ children, container, maxNotifications, }: NotificationsProviderProps) => JSX.Element; export default NotificationsProvider; //# sourceMappingURL=NotificationsProvider.d.ts.map