import { TruncationMode } from '../../../../../typography/text-ellipsis/TextEllipsis.js'; export declare function useTickTruncation(formattedValue: string | undefined, maxSpaceForTruncation: number, truncationMode: TruncationMode): { displayValue: string | undefined; tickClassName: string | undefined; tickInlineStyle: { [cssVarName: string]: string; }; truncatedWidth: number; truncatedHeight: number; truncatedValue: string; };