import { OnDestroy, OnInit, TemplateRef } from '@angular/core'; import { NzLocaleService } from '../locale/index'; import { NzModalSubject } from './nz-modal-subject.service'; export declare class NzConfirmComponent implements OnInit, OnDestroy { subject: NzModalSubject; private _locale; private _maskClosable; _confirmLoading: boolean; _visible: boolean; _prefixCls: string; _prefixConfirmCls: string; _maskClassMap: any; _bodyClassMap: any; _bodyStyleMap: any; _width: string; _zIndex: number; _iconTypeCls: string; _title: string; _titleTpl: TemplateRef; _content: string; _contentTpl: TemplateRef; _okText: string; _cancelText: string; _animationStatus: string; _customClass: string; _typeCls: string; private contentEl; nzVisible: boolean; nzWidth: number | string; nzClass: string; nzZIndex: number; nzTitle: string | TemplateRef; nzContent: string | TemplateRef; nzMaskClosable: boolean; nzOkText: string; nzCancelText: string; nzIconType: string; nzConfirmType: string; nzConfirmLoading: boolean; onEsc(e: KeyboardEvent): void; onEnter(e: KeyboardEvent): void; setStyles(origin?: { x: number; y: number; }): void; setClassMap(): void; anmiateFade(status: string): void; closeFromMask(e: MouseEvent): void; constructor(subject: NzModalSubject, _locale: NzLocaleService); ngOnInit(): void; ngOnDestroy(): void; }