import { EventArgs, Type } from "./type";
/**
 * @hidden
 */
export declare class PropertyUpdatedEventArgs extends EventArgs {
    static $t: Type;
    constructor(a: string, b: any, c: any);
    private _propertyName;
    get propertyName(): string;
    set propertyName(a: string);
    private _oldValue;
    get oldValue(): any;
    set oldValue(a: any);
    private _newValue;
    get newValue(): any;
    set newValue(a: any);
}
