import { Id } from "react-toastify"; export interface ToastCallProps { action: "loading" | "success" | "dismiss" | "error" | "update"; toastItem?: undefined | Id; children?: any; updateType?: "error" | "info" | "success" | "warning"; autoClose?: number | false; } declare const ToastCall: ({ action, toastItem, children, updateType, autoClose, }: ToastCallProps) => void | Id; export default ToastCall;