UNPKG

monday-ui-react-core

Version:

Official monday.com UI resources for application development in React.js

9 lines (8 loc) 532 B
import { MutableRefObject } from "react"; import { ElementContent } from "../../types"; import { TooltipProps } from "../Tooltip/Tooltip"; export declare function useEllipsisClass(ellipsis: boolean, maxLines?: number): { class: string; style: Record<string, string>; }; export declare function useTooltipProps(ref: MutableRefObject<HTMLElement>, withoutTooltip: boolean, ellipsis: boolean, tooltipProps: Partial<TooltipProps>, children: ElementContent, ignoreHeightOverflow: boolean, overflowTolerance: number): {};