import { FC } from 'react';
export interface FunnelAxisLineProps {
    /**
     * Color of the axis lines.
     *
     * @default '#333'
     */
    strokeColor: string;
    /**
     * Width of the axis lines.
     *
     * @default 2
     */
    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<Partial<FunnelAxisLineProps>>;
