import { type FC, type HTMLAttributes, type ReactNode } from 'react'; import type { HeadingLevels } from '../types/common'; import '../styles/components/hero-container.scss'; type HeroContainerProps = HTMLAttributes & { /** * The heading of the component */ headingContent?: ReactNode; /** * The heading level */ headingLevel?: HeadingLevels; /** * CSS classes to pass to the component heading */ headingClassName?: string; /** * Remove left and right padding */ noSidePadding?: boolean; }; export declare const HeroContainer: FC & HTMLAttributes; export default HeroContainer; //# sourceMappingURL=hero-container.d.ts.map