/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface LabTipProps extends JSX.HTMLAttributes { /** Show the bubble without hover or focus. */ pinned?: boolean; } /** A hover-driven tooltip specimen (CSS only; not the Tooltip component). */ export declare const LabTip: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; export type LabTipBubblePlacement = "top" | "bottom" | "left" | "right"; export interface LabTipBubbleProps extends JSX.HTMLAttributes { /** Side of the trigger the bubble sits on. */ placement?: LabTipBubblePlacement; } /** The bubble of a tip specimen. */ export declare const LabTipBubble: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=LabTip.d.ts.map