import { EventEmitter } from '@angular/core'; /** Notification banners are used for general information about the state of the application or upcoming events. For instant * feedback responding to user actions, use a toaster message.*/ export declare class HcBannerComponent { private _type; private _fixedTop; private _clickDismiss; /** If the banner can be dismissed, emits when the banner is clicked to close */ bannerClose: EventEmitter; /** Style of the notification banner; Defaults to info. * Options are: `success`, `info`, `warning`, `alert`*/ type: string; /** When set to true, a close icon is added to the right side and `bannerClose` * emits on a click. Defaults to false.*/ clickDismiss: boolean; _bannerClick(event: MouseEvent): void; }