import { default as regl } from 'regl'; import { GraphConfigInterface } from '../config'; import { GraphData } from './GraphData'; import { Points } from './Points'; import { Store } from './Store'; export declare class CoreModule { readonly reglInstance: regl.Regl; readonly config: GraphConfigInterface; readonly store: Store; readonly data: GraphData; readonly points: Points | undefined; _debugRandomNumber: number; constructor(reglInstance: regl.Regl, config: GraphConfigInterface, store: Store, data: GraphData, points?: Points); }