import React from 'react';
import { ShapeProps } from '@/types';
interface EllipseProps {
    shapeProps: ShapeProps;
    isSelected: boolean;
    onSelect: () => void;
    onUpdate: (shape: ShapeProps) => void;
}
export declare const Ellipse: React.FC<EllipseProps>;
export {};
//# sourceMappingURL=Ellipse.d.ts.map