import { type ToasterProps } from "react-hot-toast"; import type { ToastOptions } from "./ToastFunction"; type ToastContainerProps = { gap?: number; maxVisibleToasts?: number; toastOptions?: ToastOptions; } & Omit; declare const ToastContainer: ({ gap, position, reverseOrder, containerClassName, toastOptions, maxVisibleToasts, ...props }: ToastContainerProps) => import("react/jsx-runtime").JSX.Element; export default ToastContainer;