import { Description } from "./Description";
import { ListPanelPrimaryKeyValueDescription } from "./ListPanelPrimaryKeyValueDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class ListPanelSelectedKeysChangedEventArgsDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private l;
    get currentKeys(): ListPanelPrimaryKeyValueDescription[];
    set currentKeys(a: ListPanelPrimaryKeyValueDescription[]);
    private k;
    get addedKeys(): ListPanelPrimaryKeyValueDescription[];
    set addedKeys(a: ListPanelPrimaryKeyValueDescription[]);
    private m;
    get removedKeys(): ListPanelPrimaryKeyValueDescription[];
    set removedKeys(a: ListPanelPrimaryKeyValueDescription[]);
}
