import { ReactNode, default as React } from 'react'; import { RichText } from '../../types'; export interface CTABannerProps { /** * Action text of the banner button. */ action?: ReactNode; /** * Content of the banner. */ description?: RichText; /** * Title of the banner. */ title?: string; } export declare const CTABanner: React.FC;