import { ComponentFactory, ComponentFactoryResolver, ElementRef, EventEmitter, OnDestroy, OnInit, Renderer2, ViewContainerRef } from '@angular/core'; import { NzTooltipDirective } from '../tooltip/nz-tooltip.directive'; import { NzPopconfirmComponent } from './nz-popconfirm.component'; export declare class NzPopconfirmDirective extends NzTooltipDirective implements OnInit, OnDestroy { private subclassUnsubscribe$; factory: ComponentFactory; _condition: boolean; _okText: string; _okType: string; _cancelText: string; nzOnCancel: EventEmitter; nzOnConfirm: EventEmitter; nzOkText: string; nzOkType: string; nzCancelText: string; nzCondition: boolean; constructor(elementRef: ElementRef, hostView: ViewContainerRef, resolver: ComponentFactoryResolver, renderer: Renderer2, tooltip: NzPopconfirmComponent); ngOnInit(): void; ngOnDestroy(): void; }