import { SVGPresentationNode } from "./SVGPresentationNode";
import { SVGNodeType } from "./SVGNodeType";
import { Rect } from "./Rect";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class SVGRoot extends SVGPresentationNode {
    static $t: Type;
    protected get_c(): SVGNodeType;
    x: number;
    w: number;
    y: Rect;
    constructor();
}
