import WrappedDrawing from "./wrapped-drawing"; import type { Coord } from "./types"; import type { VisibleShape } from "./wrapped-drawing"; declare class WrappedEllipse extends WrappedDrawing { initialPoint: Coord; wrapper: HTMLDivElement; visibleShape: VisibleShape; constructor(graphie: any, center: Coord, radii: [number, number], options: any); } export default WrappedEllipse;