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