import type { ScaleLinear } from 'd3-scale'; import type { Axis } from '../types'; interface Props { shouldPlaceZeroInMiddleOfChart: boolean; doesOneChartContainAllNegativeValues: boolean; doBothChartsContainMixedValues: boolean; drawableHeight: number; secondaryAxis: Axis; yScale: ScaleLinear; } export declare function getSecondaryDataForMixedData({ shouldPlaceZeroInMiddleOfChart, doesOneChartContainAllNegativeValues, doBothChartsContainMixedValues, drawableHeight, secondaryAxis, yScale, }: Props): { secondaryDrawableHeight: number; secondaryMin: number; secondaryMax: number; }; export {}; //# sourceMappingURL=getSecondaryDataForMixedData.d.ts.map