import { Description } from "./Description";
import { CellKeyDescription } from "./CellKeyDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class GridSelectedCellsChangedEventArgsDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private l;
    get currentCells(): CellKeyDescription[];
    set currentCells(a: CellKeyDescription[]);
    private k;
    get addedCells(): CellKeyDescription[];
    set addedCells(a: CellKeyDescription[]);
    private m;
    get removedCells(): CellKeyDescription[];
    set removedCells(a: CellKeyDescription[]);
}
