import { Geometry } from "./Geometry";
import { Rect } from "./Rect";
import { GeometryType } from "./GeometryType";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class RectangleGeometry extends Geometry {
    static $t: Type;
    e: Rect;
    c: number;
    d: number;
    protected get_b(): GeometryType;
    get b(): GeometryType;
}
