import type { FC, HTMLAttributes, Ref } from 'react'; export interface BannerContentProps extends HTMLAttributes { ref?: Ref; } /** * Container for the Banner's main content (title row and description). * * Provides the flex column layout and takes up the remaining horizontal space. */ export declare const BannerContent: FC;