import { ShapeObjectType, VBAShapeType } from "../common/enums"; import { GAbstractEllipseCircle } from "./x_ellipse"; export declare class GCircle extends GAbstractEllipseCircle { get svgCircle(): SVGCircleElement; constructor(svgbox: SVGElement | string); protected createSurface(svgbox: SVGElement): void; private static createCircle; get rx(): number; get ry(): number; set width(value: number); set height(value: number); get width(): number; get height(): number; get type(): ShapeObjectType; get shape(): VBAShapeType; }