// Type definitions for tf-ag-grid v13.3.1-4 // Project: http://www.ag-grid.com/ // Definitions by: Niall Crosby import { Column } from "./column"; import { GridRow } from "./gridRow"; export interface GridCellDef { floating: string; rowIndex: number; column: Column; } export declare class GridCell { floating: string; rowIndex: number; column: Column; constructor(gridCellDef: GridCellDef); getGridCellDef(): GridCellDef; getGridRow(): GridRow; toString(): string; createId(): string; }