import type { ToastOptions } from '../../components/ui/molecules/Toast/Toast.types'; export interface ToastContextValue { showToast: (options: ToastOptions) => void; clearToasts: () => void; } export declare const ToastContext: import("preact").Context;