import React from 'react';
interface SquareProps {
    width?: string;
    height?: string;
}
declare const ResizableSquareComponent: React.FC<SquareProps>;
export default ResizableSquareComponent;
