import { ListPanelActiveRowChangedEventArgs as ListPanelActiveRowChangedEventArgs_internal } from "./ListPanelActiveRowChangedEventArgs"; /** * Information about the change to the selected cells in the grid. */ export declare class IgxListPanelActiveRowChangedEventArgs { protected createImplementation(): ListPanelActiveRowChangedEventArgs_internal; protected _implementation: any; /** * @hidden */ get i(): ListPanelActiveRowChangedEventArgs_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; /** * The new active row. */ get newActiveRow(): number; set newActiveRow(v: number); static ngAcceptInputType_newActiveRow: number | string; /** * The old active row. */ get oldActiveRow(): number; set oldActiveRow(v: number); static ngAcceptInputType_oldActiveRow: number | string; }