import { FC, ReactNode } from 'react'; interface FeatureBannerProps { alertText?: string; children?: ReactNode; color?: string; dismissable?: boolean; subtitle: ReactNode; title: string; } declare const FeatureBanner: FC; export default FeatureBanner;