import { GridLabels } from './GridLabels'; import { GridTics } from './GridTics'; import { GridLines } from './GridLines'; import { PlotScope } from '../PlotScope'; import { CombinedPlotScope } from '../CombinedPlotScope'; export declare class PlotGrid { gridLines: GridLines; gridLabels: GridLabels; gridTics: GridTics; constructor(scope: PlotScope | CombinedPlotScope); render(): void; reset(): void; }