import { Description } from "./Description";
import { CellRangeDescription } from "./CellRangeDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class GridSelectedCellRangesChangedEventArgsDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private l;
    get currentRanges(): CellRangeDescription[];
    set currentRanges(a: CellRangeDescription[]);
    private k;
    get addedRanges(): CellRangeDescription[];
    set addedRanges(a: CellRangeDescription[]);
    private m;
    get removedRanges(): CellRangeDescription[];
    set removedRanges(a: CellRangeDescription[]);
    private n;
    get updatedRanges(): CellRangeDescription[];
    set updatedRanges(a: CellRangeDescription[]);
}
