import { default as React } from 'react';
import { ChartMargin, ChartResolution } from '../types';
import { LineChartAxesConfigFn, LineChartData } from './types';
export interface LineChartProps {
    charts: LineChartData;
    zoomRange?: [Date, Date];
    onZoom: (range: [Date, Date]) => void;
    margin?: ChartMargin;
    noAnimation?: boolean;
    resolution?: ChartResolution;
    axesConfig?: LineChartAxesConfigFn;
    isEnlarged?: boolean;
}
export declare const LineChart: React.MemoExoticComponent<({ isEnlarged, charts, onZoom, margin: marginProps, noAnimation, resolution, zoomRange, axesConfig: axesConfigProps, }: LineChartProps) => React.JSX.Element>;
