import type { ReactNode } from 'react'; import type { DataSeries, LabelFormatter } from '@shopify/polaris-viz-core'; export interface ChartProps { data: DataSeries[]; tooltipLabels: { reached: string; dropped: string; }; showTooltip?: boolean; showPercentages?: boolean; seriesNameFormatter: LabelFormatter; labelFormatter: LabelFormatter; percentageFormatter?: (value: number) => string; renderScaleIconTooltipContent?: () => ReactNode; } export declare function Chart({ data, tooltipLabels, showTooltip, showPercentages, seriesNameFormatter, labelFormatter, percentageFormatter, renderScaleIconTooltipContent, }: ChartProps): JSX.Element; //# sourceMappingURL=Chart.d.ts.map