import React from 'react';
import { BoxProps, ContainerProps } from '@mui/material';
export interface HeroModel extends BoxProps {
    header?: React.ReactNode;
    image?: string;
    containerProps?: ContainerProps;
}
export declare const Hero: React.FC<HeroModel>;
