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