import { EventArgs, Type } from "igniteui-webcomponents-core"; import { GridCellPosition } from "./GridCellPosition"; /** * @hidden */ export declare class GridActiveCellChangedEventArgs extends EventArgs { static $t: Type; private _newActiveCell; get newActiveCell(): GridCellPosition; set newActiveCell(a: GridCellPosition); private _oldActiveCell; get oldActiveCell(): GridCellPosition; set oldActiveCell(a: GridCellPosition); }