import type { SparklinLabelsAlignment } from '../types/sparkline-props.js'; interface GetContextValueLayoutProps { containerHeight: number; containerWidth: number; showContextValues: boolean; formattedContextMaxValue: string; formattedContextMinValue: string; labelsAlignment: SparklinLabelsAlignment; labelsFixedWidth?: number; } interface ContextValueLayout { fontSizePx: string; contextValueWidth: number; chartLeftOffset: number; chartWidth: number; } export declare function getContextValueLayout({ containerHeight, containerWidth, showContextValues, formattedContextMaxValue, formattedContextMinValue, labelsAlignment, labelsFixedWidth, }: GetContextValueLayoutProps): ContextValueLayout; export {};