import { type DataTestId, type MaskingProps, type StylingProps } from '@dynatrace/strato-components/core'; /** * The `Toast` component provides a way to show live, time-sensitive feedback to users, * which includes updates or changes to the system status. To display the `Toast` component * use the `ToastContainer` along with the `showToast` function. The function accepts * `ToastOptions` as an argument, allowing you to pass various configurations, and returns * the corresponding toast id. * @public */ export declare const ToastContainer: (props: { children?: import("react").ReactNode | undefined; } & StylingProps & DataTestId & MaskingProps & import("react").RefAttributes) => React.ReactElement | null;