import { EventArgs, Type } from "igniteui-react-core"; import { SpreadsheetCell } from "./SpreadsheetCell"; /** * @hidden */ export declare class SpreadsheetActiveCellChangedEventArgs extends EventArgs { static $t: Type; private readonly _c; private readonly _b; constructor(a: SpreadsheetCell, b: SpreadsheetCell); get newValue(): SpreadsheetCell; get oldValue(): SpreadsheetCell; }