import type { ReactNode } from 'react'; interface Props { ariaLabel: string; barHeight: number; barWidth: number; children: ReactNode; index: number; isLast: boolean; onMouseEnter?: (index: number) => void; onMouseLeave?: () => void; shouldApplyScaling: boolean; x: number; } export declare function FunnelChartSegment({ ariaLabel, barHeight, barWidth, children, index, isLast, onMouseEnter, onMouseLeave, shouldApplyScaling, x, }: Props): JSX.Element; export {}; //# sourceMappingURL=FunnelChartSegment.d.ts.map