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