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; }; export declare function useTooltipProps(ref: MutableRefObject, withoutTooltip: boolean, ellipsis: boolean, tooltipProps: Partial, children: ElementContent, ignoreHeightOverflow: boolean, overflowTolerance: number): {};