import { ChevronProps } from '../Chevron/Chevron.interface'; import { ImageInterface } from '../IconBillboard'; import { ReactNode } from 'react'; export interface HeroBannerInterface { id?: string; className?: string; variant?: string; icon?: ImageInterface; eyebrow?: string | ReactNode; headline?: string | ReactNode; bodyCopy?: string | ReactNode; callToActionRow?: boolean | ChevronProps[]; bannerSize?: string; internalName?: string; }