declare namespace Ext { export namespace grid { export interface CellContextConfig { } export class CellContext extends Ext.Base { public colIdx?: number; public column?: Ext.grid.column.Column; public isCellContext?: boolean; public record?: Ext.data.Model; public rowIdx?: number; public clone(): Ext.grid.CellContext; public constructor(view?: Ext.view.Table); public getCell(returnDom?: boolean): Ext.dom.Element | HTMLElement; public getNode(returnDom?: boolean): Ext.dom.Element | HTMLElement; public getRow(returnDom?: boolean): Ext.dom.Element | HTMLElement; public isEqual(other?: Ext.grid.CellContext): boolean; public setPosition(row?: number | Ext.data.Model, col?: number | Ext.grid.column.Column): Ext.grid.CellContext; } } }