import { IBlockData, RecursivePartial } from '../../typings'; import { ReactElement } from 'react'; export interface MjmlBlockProps { type: T['type']; value?: RecursivePartial; attributes?: RecursivePartial; children?: ReactElement | ReactElement[] | string; } export default function MjmlBlock({ value, type, attributes, children, }: MjmlBlockProps): JSX.Element;