/// <reference types="react" />
import { GraphDataType } from "../GraphArea";
interface GraphProps {
    data: GraphDataType;
    maxDataXValue: number;
    autoScrollEnabled: boolean;
    mainRef: React.RefObject<HTMLDivElement>;
}
export default function Graph({ data, maxDataXValue, autoScrollEnabled, mainRef }: GraphProps): import("react/jsx-runtime").JSX.Element;
export {};
