import type { ReactNode } from 'react'; import type { XAxisOptions, ChartProps } from '@shopify/polaris-viz-core'; export interface LabelHelpers { key: number | string; value: ReactNode | null; } export declare type FunnelChartProps = { xAxisOptions?: Omit; yAxisOptions?: Omit; labelHelpers?: LabelHelpers[]; } & ChartProps; export declare function FunnelChart(props: FunnelChartProps): JSX.Element; //# sourceMappingURL=FunnelChart.d.ts.map