/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { Direction, Directionality } from '@angular/cdk/bidi'; import { ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges, TemplateRef } from '@angular/core'; import { VtsConfigKey, VtsConfigService } from '@ui-vts-kit/ng-vts/core/config'; import { BooleanInput } from '@ui-vts-kit/ng-vts/core/types'; import * as i0 from "@angular/core"; export declare class VtsAlertComponent implements OnChanges, OnDestroy, OnInit { vtsConfigService: VtsConfigService; private cdr; private directionality; readonly _vtsModuleName: VtsConfigKey; static ngAcceptInputType_vtsCloseable: BooleanInput; static ngAcceptInputType_vtsShowIcon: BooleanInput; static ngAcceptInputType_vtsBanner: BooleanInput; static ngAcceptInputType_vtsNoAnimation: BooleanInput; vtsCloseText: string | TemplateRef | null; vtsIconType: string | null; vtsMessage: string | TemplateRef | null; vtsDescription: string | TemplateRef | null; vtsType: 'success' | 'info' | 'warning' | 'error'; vtsTheme: 'outline' | 'fill'; vtsCloseable: boolean; vtsShowIcon: boolean; vtsBanner: boolean; vtsNoAnimation: boolean; readonly vtsOnClose: EventEmitter; closed: boolean; dir: Direction; private isTypeSet; private isShowIconSet; private destroy$; constructor(vtsConfigService: VtsConfigService, cdr: ChangeDetectorRef, directionality: Directionality); ngOnInit(): void; closeAlert(): void; onFadeAnimationDone(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }