///
import type { BoundingRect, CharacterWidthOffsets, CharacterWidths, ComparisonSeriesIndex } from '../types';
export interface ChartContextValues {
id: string | null;
characterWidths: CharacterWidths;
characterWidthOffsets: CharacterWidthOffsets;
containerBounds: BoundingRect;
shouldAnimate: boolean;
theme: string;
isTouchDevice: boolean;
isPerformanceImpacted: boolean;
scrollContainer?: Element | null;
comparisonIndexes: number[];
comparisonSeriesIndexes: ComparisonSeriesIndex[];
}
export declare const ChartContext: import("react").Context;
//# sourceMappingURL=ChartContext.d.ts.map