intro.js
Version:
User Onboarding and Product Walkthrough Library
13 lines (12 loc) • 616 B
TypeScript
import { TooltipProps } from "../../tooltip/tooltip";
import { HintItem } from "../hintItem";
export type HintTooltipProps = Omit<TooltipProps, "hintMode" | "element" | "position"> & {
hintItem: HintItem;
closeButtonEnabled: boolean;
closeButtonOnClick: (hintItem: HintItem) => void;
closeButtonLabel: string;
closeButtonClassName: string;
className?: string;
renderAsHtml?: boolean;
};
export declare const HintTooltip: ({ hintItem, closeButtonEnabled, closeButtonOnClick, closeButtonLabel, closeButtonClassName, className, renderAsHtml, ...props }: HintTooltipProps) => HTMLDivElement;