import type { DataGroup, ChartProps, XAxisOptions, LabelFormatter } from '@shopify/polaris-viz-core'; import type { ReactNode } from 'react'; import type { ComboAnnotation, RenderAnnotationContentData, RenderLegendContent, RenderTooltipContentData } from '../../types'; export declare type ComboChartProps = { data: DataGroup[]; annotations?: ComboAnnotation[]; renderAnnotationContent?: (data: RenderAnnotationContentData) => ReactNode; renderTooltipContent?(data: RenderTooltipContentData): ReactNode; seriesNameFormatter?: LabelFormatter; showLegend?: boolean; xAxisOptions?: Partial; renderLegendContent?: RenderLegendContent; } & ChartProps; export declare function ComboChart(props: ComboChartProps): JSX.Element; //# sourceMappingURL=ComboChart.d.ts.map