UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

14 lines (13 loc) 498 B
interface HoverCardContext { openDropdown: () => void; closeDropdown: () => void; getReferenceProps?: () => any; getFloatingProps?: () => any; reference?: (node: HTMLElement | null) => void; floating?: (node: HTMLElement | null) => void; } export declare const HoverCardContextProvider: ({ children, value }: { value: HoverCardContext; children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element, useHoverCardContext: () => HoverCardContext; export {};