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