import { type ReactNode, type FC } from 'react'; import '../styles/components/header.scss'; type HeroHeaderProps = { /** * The title of the hero header */ title: ReactNode; /** * The content of the hero header */ children: ReactNode; /** * An optional footer, displayed at the bottom */ footer?: ReactNode; /** * An optional class name */ className?: string; }; export declare const HeroHeader: FC; export default HeroHeader; //# sourceMappingURL=hero-header.d.ts.map