import React from 'react'; declare type HeroImageProps = { heroImageUrlSmall: string; heroImageUrlLarge: string; }; export declare type HeroSectionProps = HeroImageProps & { heroText?: string; bottomElement: React.ReactElement; }; export declare function HeroSection({ heroText, bottomElement, heroImageUrlSmall, heroImageUrlLarge, }: HeroSectionProps): JSX.Element; export {};