import { EventEmitter } from '@angular/core'; import { IconComponent } from '../../icon/icon.component'; import * as i0 from "@angular/core"; export declare class BannerComponent { variant: BannerComponent.Variant; icon: boolean | IconComponent.Name; iconTooltip?: string; /** * Optional bold heading rendered above the projected body content. * Intended for banners that need a short title paired with supporting * text — a banner with a heading should always include body content. * Empty or whitespace-only values are treated as no heading. */ heading?: string; dismissable: boolean; get hasHeading(): boolean; getResolvedIcon(): IconComponent.Name | null; dismiss: EventEmitter; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare namespace BannerComponent { const Variants: readonly ["warning", "safety", "danger", "info"]; type Variant = (typeof Variants)[number]; }