import * as React from 'react';
import { PointNode } from './PointNode';
import { IProps as ILineProps } from './Line';
interface IProps extends ILineProps {
    Interval: number;
    RerenderCallback?: () => boolean;
}
declare const StreamingLine: React.ForwardRefExoticComponent<IProps & React.RefAttributes<PointNode | null>>;
export default StreamingLine;
