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