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