import type { IBoxProps } from '../../primitives'; export declare type ICenterProps = IBoxProps; export declare type ICircleProps = IBoxProps & { size?: number | string; }; export declare type ISquareProps = IBoxProps & { size?: number | string; };