import { IViewProps } from '../View'; interface IHeroProps extends IViewProps { color?: string; text: string; img?: string; } declare const Hero: ({ img, text, children, color, ...props }: IHeroProps) => JSX.Element; export default Hero;