import { BooleanInput } from '@angular/cdk/coercion';
import { EventEmitter } from '@angular/core';
import { BannerType } from './banner.types';
import { XuiConfigService } from '../config';
import * as i0 from "@angular/core";
export declare class BannerComponent {
    private configService;
    static ngAcceptInputType_dismissible: BooleanInput;
    private readonly _moduleName;
    type: BannerType;
    stamp: string;
    dismissible: boolean;
    bannerClose: EventEmitter<any>;
    get styles(): {
        [klass: string]: boolean;
    };
    constructor(configService: XuiConfigService);
    dismiss(): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<BannerComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<BannerComponent, "xui-banner", never, { "type": { "alias": "type"; "required": false; }; "stamp": { "alias": "stamp"; "required": false; }; "dismissible": { "alias": "dismissible"; "required": false; }; }, { "bannerClose": "bannerClose"; }, never, ["*"], false, never>;
}
