import { PropsWithChildren, ReactPortal } from "react"; interface Props { duration?: number; } export default function Toaster(props: PropsWithChildren): JSX.Element | ReactPortal; export {};