import type { ReactNode } from 'react'; import { ChartState } from '@shopify/polaris-viz-core'; import type { XAxisOptions, YAxisOptions, ChartProps, LabelFormatter } from '@shopify/polaris-viz-core'; import type { Annotation, BottomOnlyLegendPosition, RenderAnnotationContentData, RenderLegendContent, TooltipOptions } from '../../types'; export declare type StackedAreaChartProps = { annotations?: Annotation[]; tooltipOptions?: TooltipOptions; state?: ChartState; errorText?: string; legendPosition?: BottomOnlyLegendPosition; renderLegendContent?: RenderLegendContent; showLegend?: boolean; skipLinkText?: string; theme?: string; xAxisOptions?: Partial; yAxisOptions?: Partial; renderAnnotationContent?: (data: RenderAnnotationContentData) => ReactNode; renderHiddenLegendLabel?: (count: number) => string; seriesNameFormatter?: LabelFormatter; scrollContainer?: Element | null; } & ChartProps; export declare function StackedAreaChart(props: StackedAreaChartProps): JSX.Element | null; //# sourceMappingURL=StackedAreaChart.d.ts.map