/// import { type Tweened } from 'svelte/motion'; import type { Toast } from '../model/toast'; export declare const notifications: import("svelte/store").Writable<{ toast: Toast; timer: Tweened; }[]>; export declare function toast(level: string, message: string, messageTitle: string): void;