/** * @license * Copyright Alibaba.com All Rights Reserved. * * 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 { ChangeDetectorRef, ComponentFactory, ComponentFactoryResolver, ElementRef, Renderer2, TemplateRef, ViewContainerRef } from '@angular/core'; import { NzNoAnimationDirective } from 'ng-zorro-antd/core/no-animation'; import { NzTSType } from 'ng-zorro-antd/core/types'; import { NzTooltipBaseComponent, NzTooltipBaseDirective, NzTooltipTrigger } from './base'; export declare class NzTooltipDirective extends NzTooltipBaseDirective { /** * The title that should have highest priority. */ specificTitle: NzTSType; /** * Use the directive's name as the title that have priority in the second place. */ directiveNameTitle: NzTSType | null; specificTrigger: NzTooltipTrigger; specificPlacement: string; componentFactory: ComponentFactory; constructor(elementRef: ElementRef, hostView: ViewContainerRef, resolver: ComponentFactoryResolver, renderer: Renderer2, noAnimation?: NzNoAnimationDirective); } export declare class NzToolTipComponent extends NzTooltipBaseComponent { noAnimation?: NzNoAnimationDirective | undefined; nzTitle: NzTSType | null; nzTitleTemplate: TemplateRef; constructor(cdr: ChangeDetectorRef, noAnimation?: NzNoAnimationDirective | undefined); protected isEmpty(): boolean; }