import type { CustomProps } from '../../../components/types/utils'; import type { InterfaceBoxProps } from '../../../components/primitives/Box/types'; export interface InterfaceCenterProps extends InterfaceBoxProps { } export declare type ICircleProps = InterfaceBoxProps & { size?: number | string; }; export declare type ISquareProps = InterfaceBoxProps & { size?: number | string; }; export declare type ICenterProps = InterfaceCenterProps & CustomProps<'Center'>;