import { FC } from 'react'; type HeroFields = { title: string; subText: string; }; type HeroProps = { fields: HeroFields; }; declare const Hero: FC; export { Hero, type HeroFields, type HeroProps };