import React from 'react';
import { TMethod } from '@onesy/models';
import { IChart, IChartValueValues } from '../Chart/Chart';
export declare type ILineChartItem = IChart & {
    name?: string;
    refs?: {
        wrapper?: HTMLElement;
        defs?: HTMLElement;
    };
    rects?: {
        wrapper?: DOMRect;
        svg?: DOMRect;
    };
    values?: IChartValueValues;
    updateDefs?: TMethod;
    updateLegend?: TMethod;
    smooth?: boolean;
    smoothRatio?: number;
    BackgroundProps?: any;
    BorderProps?: any;
};
declare const LineChartItem: React.FC<ILineChartItem>;
export default LineChartItem;
