/// import { RecursivePartial } from '../typings'; import { IGroup } from '../components/core/blocks/basic/Group'; export declare type GroupProps = RecursivePartial & RecursivePartial & { children?: JSX.Element | JSX.Element[] | string; }; export declare function Group(props: GroupProps): JSX.Element;