import type { ComputedRef } from 'vue'; export type ToastContext = ComputedRef<{ delete: () => void; header: string | null; progress: number | null; text: string; }>; export declare const TOAST_CONTEXT: unique symbol;