import { Toaster, type AddToastProps } from "melt/builders"; export type ToastData = { title: string; description: string; variant: "success" | "warning" | "error"; }; export const toaster = new Toaster({}); export function addToast(args: AddToastProps) { toaster.addToast(args); } export function removeToast(id: string) { toaster.removeToast(id); }