interface ToastyProps { open: boolean; onDone: () => void; } declare const Toasty: ({ open, onDone }: ToastyProps) => import("node_modules/@types/react/jsx-runtime").JSX.Element | null; export default Toasty;