import { ReactNode } from "react"; type ToastContainerProps = { children?: ReactNode; baseZIndex?: number; }; declare function ToastContainer({ children, baseZIndex }: ToastContainerProps): JSX.Element; export default ToastContainer;