import bigInt from 'big-integer'; import { ChartDataTypes, ChartInternalDataTypes, ChartDataShape } from './types'; export declare function normalizeValue(value: ChartDataTypes, maxBigInt: bigInt.BigInteger): ChartInternalDataTypes; export declare function normalizeValueForFormatting(value: ChartDataTypes): ChartInternalDataTypes; export declare function getMaxBigInteger(series: ChartDataShape[]): bigInt.BigInteger;