import { default as React } from 'react'; import { Toast } from 'react-hot-toast'; interface CustomToastProps { t: Toast; type: "success" | "info" | "error"; text: string; hash?: string; } declare const CustomToast: React.FC; export default CustomToast;