import { FC } from 'react'; export interface FunnelAxisLineProps { /** * Color of the axis lines. */ strokeColor: string; /** * Width of the axis lines. */ strokeWidth: number; /** * xScale for the funnel. Set internally by `FunnelChart`. */ xScale: any; /** * yScale for the funnel. Set internally by `FunnelChart`. */ yScale: any; /** * Index of the line. Set internally by `FunnelAxis`. */ index: number; } export declare const FunnelAxisLine: FC>;