import { BaseComponent } from '../../Utilities';
import { IGrid, IGridProps } from './Grid.types';
export declare class GridBase extends BaseComponent<IGridProps, {}> implements IGrid {
    private _id;
    constructor(props: IGridProps);
    render(): JSX.Element;
}
