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