/** * 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 { Directionality } from '@angular/cdk/bidi'; import { ChangeDetectorRef, ComponentRef, ElementRef, EventEmitter, Renderer2, ViewContainerRef } from '@angular/core'; import { NzConfigKey, NzConfigService } from 'ng-zorro-antd/core/config'; import { NzNoAnimationDirective } from 'ng-zorro-antd/core/no-animation'; import { BooleanInput, NgStyleInterface, NzTSType } from 'ng-zorro-antd/core/types'; import { NzTooltipBaseDirective, NzToolTipComponent, NzTooltipTrigger, PropertyMapping } from 'ng-zorro-antd/tooltip'; import * as i0 from "@angular/core"; export declare class NzPopoverDirective extends NzTooltipBaseDirective { static ngAcceptInputType_nzPopoverArrowPointAtCenter: BooleanInput; readonly _nzModuleName: NzConfigKey; arrowPointAtCenter?: boolean; title?: NzTSType; content?: NzTSType; directiveTitle?: NzTSType | null; trigger?: NzTooltipTrigger; placement?: string | string[]; origin?: ElementRef; visible?: boolean; mouseEnterDelay?: number; mouseLeaveDelay?: number; overlayClassName?: string; overlayStyle?: NgStyleInterface; nzPopoverBackdrop?: boolean; readonly visibleChange: EventEmitter; componentRef: ComponentRef; protected getProxyPropertyMap(): PropertyMapping; constructor(elementRef: ElementRef, hostView: ViewContainerRef, renderer: Renderer2, noAnimation?: NzNoAnimationDirective, nzConfigService?: NzConfigService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export declare class NzPopoverComponent extends NzToolTipComponent { _prefix: string; constructor(cdr: ChangeDetectorRef, directionality: Directionality, noAnimation?: NzNoAnimationDirective); get hasBackdrop(): boolean; protected isEmpty(): boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }