import type { TruncationMode } from '../../../../../../typography/text-ellipsis/TextEllipsis.js'; /** * Handle the collision between two labels (left and right boundary). * If a collision is detected it applies the truncation and return the * truncated labels. * @param firstLabel - * @param lastLabel - * @param truncationMode - * @param bounds - */ export declare const handleTwoLabelsCollisions: (firstLabel: string, lastLabel: string, truncationMode: TruncationMode, bounds: [number, number]) => { startLabel: string; endLabel: string; };