import type { CSSProperties } from 'react'; import type { ToastOptions } from 'react-toastify'; type ToastContainerProps = { /** * 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 of the toast container */ position?: ToastOptions['position']; 'data-testid'?: string; className?: string; /** * Delay before the toast is automatically closed, if not set the default value is 6000ms */ autoClose?: number; /** * Set a custom containerId to be able to define multiple ToastContainers */ containerId?: string; style?: CSSProperties; }; export declare function ToastContainer({ newestOnTop, limit, position, 'data-testid': dataTestId, className, autoClose, containerId, style, }: ToastContainerProps): import("react").JSX.Element; export declare namespace ToastContainer { var displayName: string; } export {}; //# sourceMappingURL=ToasterContainer.d.ts.map