export interface HoverCardContextValue {
    openDropdown: () => void;
    closeDropdown: () => void;
    getReferenceProps?: () => any;
    getFloatingProps?: () => any;
    reference?: (node: HTMLElement | null) => void;
    floating?: (node: HTMLElement | null) => void;
}
export declare const HoverCardContext: import("react").Context<HoverCardContextValue | null>, useHoverCardContext: () => HoverCardContextValue;
