import { Description } from "./Description";
import { CellInfoDescription } from "./CellInfoDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class GridCellValueChangingEventArgsDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private m;
    get editID(): number;
    set editID(a: number);
    private k;
    get cellInfo(): CellInfoDescription;
    set cellInfo(a: CellInfoDescription);
    private u;
    get columnRef(): string;
    set columnRef(a: string);
    private o;
    get item(): any;
    set item(a: any);
    private q;
    get oldValue(): any;
    set oldValue(a: any);
    private p;
    get newValue(): any;
    set newValue(a: any);
}
