import { Description } from "./Description";
import { CellInfoDescription } from "./CellInfoDescription";
import { DataGridColumnDescription } from "./DataGridColumnDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class GridCellValueChangingEventArgsDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private j;
    get editID(): number;
    set editID(a: number);
    private f;
    get cellInfo(): CellInfoDescription;
    set cellInfo(a: CellInfoDescription);
    private h;
    get column(): DataGridColumnDescription;
    set column(a: DataGridColumnDescription);
    private p;
    get itemRef(): string;
    set itemRef(a: string);
    private m;
    get oldValue(): any;
    set oldValue(a: any);
    private l;
    get newValue(): any;
    set newValue(a: any);
}
