import { CSSProperties, Ref } from 'react'; import { FloatingContext } from '@floating-ui/react'; export interface TooltipContextState { open: boolean; changeOpen: (value: boolean) => void; context: FloatingContext; arrowRef?: Ref; triggerProps?: Record; contentProps?: Record; contentStyle?: CSSProperties; } export declare const TooltipProvider: any, useTooltipContext: any;