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