import { type ToastContainerProps } from './ToastContainer.types'; export declare const TOP_GAP = "48px"; export declare const BOTTOM_GAP = "12px"; export declare const CONTAINER_GAP_MOBILE = "24px"; export declare const CONTAINER_GAP_DESKTOP = "48px"; /** * Toast container component is responsible for rendering toast items. * * Toast animation is handled by the toast container component. * It's combination of toast container height transition and toast items' margin-top, top and box-shadow transition. * */ export declare function ToastContainer({ items, onItemClose }: ToastContainerProps): import("react/jsx-runtime").JSX.Element;