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