import { type SquareProps } from "../square";
export interface CircleProps extends SquareProps {
}
export declare const Circle: import("react").ForwardRefExoticComponent<SquareProps & import("react").RefAttributes<HTMLDivElement>>;
