import { Shape, ShapeConfig } from '../Shape'; import { GetSet, Vector2d } from '../types'; export interface EllipseConfig extends ShapeConfig { radiusX: number; radiusY: number; } export declare class Ellipse extends Shape { _sceneFunc(context: any): void; getWidth(): number; getHeight(): number; setWidth(width: any): void; setHeight(height: any): void; radius: GetSet; radiusX: GetSet; radiusY: GetSet; }