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