import type { ScaleLinear } from 'd3-scale'; import type { Axis } from '../types'; interface Props { doBothChartsContainMixedValues: boolean; doesOneChartContainAllNegativeValues: boolean; drawableHeight: number; primaryAxis: Axis; secondaryAxis: Axis; shouldPlaceZeroInMiddleOfChart: boolean; ticksBetweenZeroAndMax: number; yScale: ScaleLinear; } export declare function useDualAxisScale({ doBothChartsContainMixedValues, doesOneChartContainAllNegativeValues, drawableHeight, primaryAxis, secondaryAxis, shouldPlaceZeroInMiddleOfChart, ticksBetweenZeroAndMax, yScale, }: Props): { barYScale: ScaleLinear; lineYScale: ScaleLinear; primaryYScale: ScaleLinear; secondaryYScale: ScaleLinear; }; export {}; //# sourceMappingURL=useDualAxisScale.d.ts.map