import * as React from 'react';
import { IGridCellProps } from './GridCell.Props';
export declare class GridCell<T, P extends IGridCellProps<T>> extends React.Component<P, {}> {
    static defaultProps: {
        cellShape: string;
        disabled: boolean;
        id: string;
    };
    render(): JSX.Element;
    private _onClick();
    private _onMouseEnter();
    private _onMouseLeave();
    private _onFocus();
}
