import { ReactElement } from 'react'; import { ToastContainerPositions } from '@viasat/beam-shared/components/toast'; export interface ToastContainerProps extends React.ComponentPropsWithoutRef<'div'> { /** * Specify the position of the toasts * @default 'bottom-right' */ position?: ToastContainerPositions; /** * Specify if the container should be rendered in a portal * @default false */ renderInPortal?: boolean; /** * Specify space between Toast and the viewport (use rems for accessibility) * @default false */ offsetX?: string; /** * Specify space between Toast and the viewport (use rems for accessibility) */ offsetY?: string; /** * Max number of Toast allowed */ maxToasts?: number; } export declare const ToastContainer: ({ position, offsetX, offsetY, maxToasts, children, renderInPortal, className: _className, }: ToastContainerProps) => ReactElement;