// notiwind.ts import { createNotifier, NotificationGroup, defineNotificationComponent, } from "notiwind"; export type NotificationSchema = { type: string; title?: string; text: string; }; export const notify = createNotifier(); export const Notification = defineNotificationComponent(); export { NotificationGroup };