UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

17 lines (16 loc) 439 B
import type { TooltipProps } from './types'; export type TooltipContextValue = { /** * The props of the Tooltip component. */ props: TooltipProps; /** * Whether the tooltip is controlled from outside. */ isControlled: boolean; /** * The internal ID used for aria-describedby. */ internalId: string; }; export declare const TooltipContext: import("react").Context<TooltipContextValue>;