import { Colors, Goal, Target, WaterfallData } from './WaterfallChart'; import { Improvement } from '../../ComparisonBlock/ComparisonBlock'; export type WaterfallChartCoreProps = { reference?: WaterfallData; start?: WaterfallData; values?: WaterfallData[]; colors?: Colors; target?: Target; goal?: Goal; forcedPrecision?: number; unit?: string; improvement: Improvement; targetValueFinal?: number; valueFormatterFn?: (value: number, precision?: number) => string; precision?: number; CoreOverride?: { XAxisHeight?: number; }; }; export declare const WaterfallChartCore: (props: WaterfallChartCoreProps) => import("react/jsx-runtime").JSX.Element;