import { Base, Type } from "./type";
import { GeometryType } from "./GeometryType";
import { PathFigureCollection } from "./PathFigureCollection";
/**
 * @hidden
 */
export declare abstract class Geometry extends Base {
    static $t: Type;
    constructor();
    abstract get b(): GeometryType;
    static a(a: string): Geometry;
}
/**
 * @hidden
 */
export declare class PathGeometry extends Geometry {
    static $t: Type;
    constructor();
    c: PathFigureCollection;
    protected get_b(): GeometryType;
    get b(): GeometryType;
}
/**
 * @hidden
 */
export declare class PathMarkupParser extends Base {
    static $t: Type;
    private e;
    private h;
    private l;
    private f;
    private i;
    k(a: string): Geometry;
    private a;
    private j;
    private m;
    private g;
    private b;
    private d;
    private c;
}
