import React from 'react'; import { ToastWithID } from "../use-toasts/toast-container"; export declare type UpdateToastsFunction = (fn: (toasts: Array) => Array) => any; export interface GeistUIContextParams { toasts: Array; toastHovering: boolean; updateToasts: UpdateToastsFunction; updateToastHoverStatus: (fn: () => boolean) => void; } export declare const GeistUIContent: React.Context; export declare const useGeistUIContext: () => GeistUIContextParams;