import * as React from "react"; import { GridOptions, GridMethods, GridFunction } from "@egjs/grid"; import { ReactGridProps } from "./types"; export declare abstract class Grid extends React.PureComponent { static GridClass: GridFunction; private _grid; private _containerRef; render(): JSX.Element; componentDidMount(): void; componentDidUpdate(): void; componentWillUnmount(): void; } export interface Grid extends GridMethods> { }