/** * Binary search to find the maximum middle-truncated text that will fit within the specified target width. * The truncation will occur in the center of the string, with the same number of characters on either side. */ export declare const calculateMiddleTruncation: (text: string, targetWidth: number, measure: (value: string) => number) => string;