import { PureComponent } from 'react';
import { GridProps } from './Props';
export default class Grid extends PureComponent<GridProps> {
    static isGrid: boolean;
    static displayName: string;
    render(): JSX.Element;
}
