import { Description } from "./Description";
import { GridCellPositionDescription } from "./GridCellPositionDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class GridActiveCellChangedEventArgsDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private k;
    get newActiveCell(): GridCellPositionDescription;
    set newActiveCell(a: GridCellPositionDescription);
    private l;
    get oldActiveCell(): GridCellPositionDescription;
    set oldActiveCell(a: GridCellPositionDescription);
}
