import { default as React } from 'react'; import { CircleProps } from '../circle'; export interface SquareProps extends CircleProps { height?: number | string; rounded?: boolean; fullWidth?: boolean; } declare const Square: { ({ className, rounded, width, fullWidth, height, style, ...rest }: SquareProps): React.JSX.Element; displayName: string; }; export default Square;