import { Shape } from './Shape'; import { ShapeNameProps } from './ShapeNameProps'; export declare class Ellipse extends Shape { private cx; private cy; private rx; private ry; constructor(xBound: number, yBound: number); set props([cx, cy, rx, ry]: number[]); get props(): number[]; get svg(): ShapeNameProps; clone(): Shape; mutate(): void; rasterize(): number[][]; }