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