import { AreaChartProps } from '../interfaces'; import { XDomain, XScaleType, YDomain, YScaleType } from '../../internal/components/cartesian-chart/interfaces'; import { ChartScale, NumericChartScale } from '../../internal/components/cartesian-chart/scales'; export default function computeChartProps({ series, xDomain: externalXDomain, yDomain: externalYDomain, xScaleType, yScaleType, height, width, }: { series: readonly AreaChartProps.Series[]; xDomain?: XDomain; yDomain?: YDomain; xScaleType: XScaleType; yScaleType: YScaleType; height: number; width: number; }): { xDomain: import("../../internal/components/cartesian-chart/interfaces").ChartDomain; yDomain: readonly number[]; xScale: ChartScale; yScale: NumericChartScale; xTicks: import("../../internal/components/cartesian-chart/interfaces").ChartDataTypes[]; yTicks: number[]; plot: { xy: import(".").ChartModel.PlotPoint[][]; xs: import(".").ChartModel.PlotPoint[][]; sx: import(".").ChartModel.PlotPoint[][]; }; }; //# sourceMappingURL=compute-chart-props.d.ts.map