import { IgxListPanelSelectedKeysCollection } from "./igx-list-panel-selected-keys-collection"; import { ListPanelSelectedKeysChangedEventArgs as ListPanelSelectedKeysChangedEventArgs_internal } from "./ListPanelSelectedKeysChangedEventArgs"; /** * Information about the change to the selected keys in the grid. */ export declare class IgxListPanelSelectedKeysChangedEventArgs { protected createImplementation(): ListPanelSelectedKeysChangedEventArgs_internal; protected _implementation: any; /** * @hidden */ get i(): ListPanelSelectedKeysChangedEventArgs_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; private _currentKeys; /** * All keys in the selection. */ get currentKeys(): IgxListPanelSelectedKeysCollection; set currentKeys(v: IgxListPanelSelectedKeysCollection); static ngAcceptInputType_currentKeys: IgxListPanelSelectedKeysCollection | string; private _addedKeys; /** * The keys added to the selection. */ get addedKeys(): IgxListPanelSelectedKeysCollection; set addedKeys(v: IgxListPanelSelectedKeysCollection); static ngAcceptInputType_addedKeys: IgxListPanelSelectedKeysCollection | string; private _removedKeys; /** * The keys removed from the selection. */ get removedKeys(): IgxListPanelSelectedKeysCollection; set removedKeys(v: IgxListPanelSelectedKeysCollection); static ngAcceptInputType_removedKeys: IgxListPanelSelectedKeysCollection | string; }