import { default as React } from 'react';
import * as d3 from 'd3';
export interface LineChartGridLineProps extends Omit<React.SVGProps<SVGGElement>, 'scale'> {
    type: 'vertical' | 'horizontal';
    scale: d3.ScaleTime<number, number> | d3.ScaleLinear<number, number>;
    noAnimation?: boolean;
    size: number;
    ticks: number;
}
export declare const LineChartGridLine: React.MemoExoticComponent<({ type, scale, ticks, size, noAnimation, ...props }: LineChartGridLineProps) => React.JSX.Element>;
