import { type FunnelProps, type TooltipProps, type LegendProps } from "recharts"; import { type SSRSafeResponsiveContainerProps } from "./ssr-safe-container"; interface FunnelChartProps extends Omit { data: Array<{ name: string; value: number; fill?: string; }>; showTooltip?: boolean; showLegend?: boolean; showLabel?: boolean; tooltipProps?: TooltipProps, string | number>; legendProps?: LegendProps; funnelProps?: Partial; } export declare function FunnelChart({ data, className, showTooltip, showLegend, showLabel, tooltipProps, legendProps, funnelProps, height, width, aspect, }: FunnelChartProps): import("react/jsx-runtime").JSX.Element; export declare namespace FunnelChart { var displayName: string; } export {}; //# sourceMappingURL=funnel-chart.d.ts.map