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