import { ReactNode, FC } from 'react'; export { HeroLogo } from './hero-logo.mjs'; export { HeroDecorationFromLogo } from './hero-decoration-from-logo.mjs'; import 'react/jsx-runtime'; import '../decorations/index.mjs'; import '../../logos/angular.mjs'; import 'nextra/icons'; interface HeroProps { className?: string; heading: string; text: string; checkmarks: string[]; children?: ReactNode; top?: ReactNode; } declare const Hero: FC; export { Hero, type HeroProps };