import { default as React } from 'react'; export interface PromoHeroProps { /** The title of the promo hero */ title: string; /** The action to be displayed in the hero section (usually a Button etc.) */ action: React.ReactNode; /** The description to be displayed in the hero section */ description?: string; /** The image to be displayed in the hero section */ image: string | React.ReactElement; /** Alt text for the hero image */ imageAlt?: string; /** Whether the image should cover the entire area dedicated to the image or be contained within it * @default 'contain' */ imageFit?: 'cover' | 'contain'; } export declare const PromoHero: React.FC;