import React from "react"; import { ToastContainerProps } from "react-toastify"; import "react-toastify/dist/ReactToastify.css"; export interface ToastProps extends ToastContainerProps { color?: string; } declare function Toast({ ...props }: ToastProps): React.JSX.Element; export default Toast;