import "./toast-container.css";
import { Toast } from "../../lib/types";
interface ToastContainerProps extends React.HTMLAttributes<HTMLDivElement> {
    /**
     * The List of Item of Toast Instance.
     */
    toasts: Toast[];
}
export default function ToastContainer({ toasts, className, ...props }: ToastContainerProps): import("react").ReactPortal[];
export {};
