export { default as Toast } from './Toast.svelte'; export type ToastType = { id: number; msg: string; style: { background: string; color: string; }; }; export declare const toastStore: import("svelte/store").Writable; export declare function showToast(msg: string | undefined | null, config?: { timeout?: number; level?: 'error'; style?: ToastType['style']; }): void;