import { EventArgs, Type } from "./type";
import { Rect } from "./Rect";
/**
 * @hidden
 */
export declare class RectChangedEventArgs extends EventArgs {
    static $t: Type;
    constructor(a: Rect, b: Rect);
    private _oldRect;
    get oldRect(): Rect;
    set oldRect(a: Rect);
    private _newRect;
    get newRect(): Rect;
    set newRect(a: Rect);
}
