import { type TruncationMode } from '@dynatrace/strato-components/typography'; 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; };