import { Font } from '@/components/chart/types'; export declare const isElementTruncated: (el: HTMLElement) => boolean; export declare function measureTextWidth(text: string, font: Font): number; export declare const truncateTextToFit: (text: string, font: Font, availableSpace: number) => string;