import { ShapeObjectType, VBAShapeType } from "../common/enums"; import { ZAbstractEllipseCircle } from "./z_ellipse"; export declare class ZCircle extends ZAbstractEllipseCircle { 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; }