import * as React from 'react';

/**
 * Mobile hero banner: full-bleed photo, bottom dark scrim for legible white text, a trust
 * pill badge, headline + subtitle. Renders a placeholder gradient in place of the real
 * hero photo (road/vehicle) -- no real photography was provided, see readme.
 */
export interface HeroBannerProps {
  badge?: string;
  title: string;
  subtitle?: string;
}
export function HeroBanner(props: HeroBannerProps): JSX.Element;
