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