import type { CSSProperties } from 'react'; import type { ToastOptions } from 'react-toastify'; type NotificationContainerProps = { /** * Delay (in ms) before the notification autocloses. To disable autoclose, set to false */ autoClose?: false | number; /** * Whether to display the newest toast on top. * `Default: false` */ newestOnTop?: boolean; /** * Limit the number of toast displayed at the same time */ limit?: number; /** * Position on the notification container */ position?: ToastOptions['position']; 'data-testid'?: string; className?: string; /** * Give a personalized containerId in case there are multiple notifications with different styled to display */ containerId?: string; style?: CSSProperties; }; export declare function NotificationContainer({ newestOnTop, limit, autoClose, position, 'data-testid': dataTestId, className, style, containerId, }: NotificationContainerProps): import("react").JSX.Element; export declare namespace NotificationContainer { var displayName: string; } export {}; //# sourceMappingURL=NotificationContainer.d.ts.map