/// import type { NOTIFY_CONFIG, NOTIFICATION_TYPE } from "../types"; import type { Writable } from "svelte/store"; export declare const notifications: Writable; export declare let notify: (msg: string, type?: NOTIFICATION_TYPE, config?: NOTIFY_CONFIG) => string; export declare let removeNotification: (id: string) => void; export declare let getClasses: (config: NOTIFY_CONFIG, type: string) => string;