import { IgRect } from './IgRect';
import { RectChangedEventArgs as RectChangedEventArgs_internal } from "./RectChangedEventArgs";
/**
 * Provides data for rectangle changed events.
*/
export declare class IgxRectChangedEventArgs {
    protected _implementation: any;
    /**
     * @hidden
     */
    get i(): RectChangedEventArgs_internal;
    private onImplementationCreated;
    constructor();
    protected _provideImplementation(i: any): void;
    /**
     * Gets the rectangle before the change.
    */
    get oldRect(): IgRect;
    set oldRect(v: IgRect);
    static ngAcceptInputType_oldRect: IgRect | string;
    /**
     * Gets the new rectangle.
    */
    get newRect(): IgRect;
    set newRect(v: IgRect);
    static ngAcceptInputType_newRect: IgRect | string;
}
