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