import { type ChartSkin } from "../shared/types.js"; import { type CartesianSeriesProps } from "../shared/cartesian-series.js"; export interface AreaChartProps extends CartesianSeriesProps { /** Stack the series (running sums) instead of overlapping translucent fills. */ stacked?: boolean; } /** Build an AreaChart from a platform skin. */ export declare function createAreaChart(skin: ChartSkin): (props: AreaChartProps) => import("react").JSX.Element; //# sourceMappingURL=area-chart.shared.d.ts.map