import mitt from "mitt"; type NotifyEvents = { notification: Notification; }; export interface Notification { content: string; level?: "info" | "error"; } export const notify = mitt();