import { default as React } from 'react';
import * as d3 from 'd3';
export interface LineChartAxisProps extends Omit<React.SVGProps<SVGGElement>, 'scale'> {
    type: 'left' | 'bottom';
    scale: d3.ScaleTime<number, number> | d3.ScaleLinear<number, number>;
    noAnimation?: boolean;
    ticks: number;
    tickFormatGenerator?: (axis: d3.Axis<d3.NumberValue>) => (domainValue: d3.AxisDomain, index: number) => string;
    anchorEl?: SVGRectElement | null;
}
export declare const LineChartAxis: React.MemoExoticComponent<({ type, scale, ticks, tickFormatGenerator, noAnimation, anchorEl, ...props }: LineChartAxisProps) => React.JSX.Element>;
