import { Toast } from "../../lib/types";
import "./toast-item.css";
interface ToastItemProps extends React.HTMLAttributes<HTMLDivElement> {
    /**
     * The Instance Item of Toast.
     */
    toast: Toast;
}
export default function ToastItem({ toast, ...props }: ToastItemProps): import("react/jsx-runtime").JSX.Element;
export {};
