/** * 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 { AnimationEvent } from '@angular/animations'; import { Direction, Directionality } from '@angular/cdk/bidi'; import { AfterContentInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnInit, Renderer2, TemplateRef, ViewContainerRef } from '@angular/core'; import { BehaviorSubject, Subject } from 'rxjs'; import { NzNoAnimationDirective } from 'ng-zorro-antd/core/no-animation'; import { IndexableObject, NzSafeAny } from 'ng-zorro-antd/core/types'; import { MenuService } from 'ng-zorro-antd/menu'; import * as i0 from "@angular/core"; export type NzPlacementType = 'bottomLeft' | 'bottomCenter' | 'bottomRight' | 'topLeft' | 'topCenter' | 'topRight'; export declare class NzDropdownMenuComponent implements AfterContentInit, OnDestroy, OnInit { private cdr; private elementRef; private renderer; viewContainerRef: ViewContainerRef; private directionality; mouseState$: BehaviorSubject; nzMenuService: MenuService; isChildSubMenuOpen$: BehaviorSubject; descendantMenuItemClick$: Subject; animationStateChange$: EventEmitter; nzOverlayClassName: string; nzOverlayStyle: IndexableObject; templateRef: TemplateRef; dir: Direction; private destroy$; onAnimationEvent(event: AnimationEvent): void; setMouseState(visible: boolean): void; setValue(key: T, value: this[T]): void; noAnimation: NzNoAnimationDirective | null; constructor(cdr: ChangeDetectorRef, elementRef: ElementRef, renderer: Renderer2, viewContainerRef: ViewContainerRef, directionality: Directionality); ngOnInit(): void; ngAfterContentInit(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }