UNPKG

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