/** * 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, ComponentFactoryResolver, ComponentRef, ElementRef, EventEmitter, Renderer2, ViewContainerRef } from '@angular/core'; import { VtsPresetColor } from '@ui-vts-kit/ng-vts/core/color'; import { VtsNoAnimationDirective } from '@ui-vts-kit/ng-vts/core/no-animation'; import { BooleanInput, NgStyleInterface, VtsTSType } from '@ui-vts-kit/ng-vts/core/types'; import { Directionality } from '@angular/cdk/bidi'; import { VtsTooltipBaseComponent, VtsTooltipBaseDirective, VtsTooltipTrigger, PropertyMapping, VtsTooltipType } from './base'; import * as i0 from "@angular/core"; export declare class VtsTooltipDirective extends VtsTooltipBaseDirective { static ngAcceptInputType_arrowPointAtCenter: BooleanInput; title?: VtsTSType | null; directiveTitle?: VtsTSType | null; trigger?: VtsTooltipTrigger; placement?: string | string[]; origin?: ElementRef; visible?: boolean; mouseEnterDelay?: number; mouseLeaveDelay?: number; overlayClassName?: string; overlayStyle?: NgStyleInterface; vtsType?: VtsTooltipType; arrowPointAtCenter?: boolean; vtsTooltipColor?: string; readonly visibleChange: EventEmitter; componentRef: ComponentRef; constructor(elementRef: ElementRef, hostView: ViewContainerRef, resolver: ComponentFactoryResolver, renderer: Renderer2, noAnimation?: VtsNoAnimationDirective); protected getProxyPropertyMap(): PropertyMapping; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export declare class VtsToolTipComponent extends VtsTooltipBaseComponent { vtsTitle: VtsTSType | null; vtsColor?: string | VtsPresetColor; _contentStyleMap: NgStyleInterface; constructor(cdr: ChangeDetectorRef, directionality: Directionality, noAnimation?: VtsNoAnimationDirective); protected isEmpty(): boolean; updateStyles(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }