export interface GridCellTypeProps {
    data: any;
    selected: boolean;
    readOnly: boolean;
    onChange?(value : any) : void;
}
