import { LabelPosition, TextAnchor } from '../types'; export type StatisticId = "minimum" | "median" | "maximum"; export type StatisticItem = { id: StatisticId; x: number; width: number; anchor: TextAnchor; }; export type StatisticLayout = Record; export declare const INITIAL_STATISTIC_LAYOUT: StatisticLayout; export declare const getFittingAnchor: (position: LabelPosition, width: number, minimumX: number, maximumX: number) => TextAnchor; export declare const assignStatisticLanes: (items: StatisticItem[], gap: number) => Record;