import { Sentiment } from '../common'; export type CriticalCommsBannerSentiment = `${Sentiment.WARNING}` | `${Sentiment.NEGATIVE}` | `${Sentiment.NEUTRAL}`; export type CriticalCommsBannerProps = { title: string; subtitle?: string; action?: { label: string; href?: string; target?: HTMLAnchorElement['target']; onClick?: () => void; }; sentiment?: CriticalCommsBannerSentiment; className?: string; }; declare function CriticalCommsBanner({ title, subtitle, action, sentiment, className, }: CriticalCommsBannerProps): import("react").JSX.Element; export default CriticalCommsBanner; //# sourceMappingURL=CriticalCommsBanner.d.ts.map