import { TextWeight } from "@trackunit/react-components"; import { ReactNode } from "react"; /** * This component is used to display a text with a tooltip. * The tooltip is displayed if the text is truncated with ellipsis. * The text is the text to display. * The tooltipLabel is the label to display in the tooltip. */ export declare const TextWithTooltip: ({ children, tooltipLabel, weight, }: { children: ReactNode; tooltipLabel?: string; weight?: TextWeight; }) => import("react/jsx-runtime").JSX.Element;