/** * @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 { Overlay } from '@angular/cdk/overlay'; import { AfterViewInit, ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core'; import { IndexableObject } from 'ng-zorro-antd/core/types'; import { NzDropdownMenuComponent, NzPlacementType } from './dropdown-menu.component'; export declare class NzDropDownDirective implements AfterViewInit, OnDestroy, OnChanges, OnInit { elementRef: ElementRef; private overlay; private viewContainerRef; private portal; private overlayRef; private destroy$; private positionStrategy; private inputVisible$; private nzTrigger$; private overlayClose$; nzDropdownMenu: NzDropdownMenuComponent | null; nzTrigger: 'click' | 'hover'; nzMatchWidthElement: ElementRef | null; nzBackdrop: boolean; nzClickHide: boolean; nzDisabled: boolean; nzVisible: boolean; nzOverlayClassName: string | null; nzOverlayStyle: IndexableObject; nzPlacement: NzPlacementType; readonly nzVisibleChange: EventEmitter; setDropdownMenuValue(key: T, value: NzDropdownMenuComponent[T]): void; constructor(elementRef: ElementRef, overlay: Overlay, viewContainerRef: ViewContainerRef); ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; ngOnChanges(changes: SimpleChanges): void; }