import React from 'react'; import { ToastWithID } from '../use-toasts/toast-container'; export declare type UpdateToastsFunction = (fn: (toasts: Array) => Array) => any; export interface ZeitUiContextParams { toasts: Array; toastHovering: boolean; updateToasts: UpdateToastsFunction; updateToastHoverStatus: Function; } export declare const ZEITUIContent: React.Context; export declare const useZEITUIContext: () => ZeitUiContextParams;