/** * 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 { Direction, Directionality } from '@angular/cdk/bidi'; import { AfterContentInit, ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, QueryList, SimpleChanges } from '@angular/core'; import { BooleanInput } from 'ng-zorro-antd/core/types'; import { NzMenuItemDirective } from './menu-item.directive'; import { MenuService } from './menu.service'; import { NzMenuModeType, NzMenuThemeType } from './menu.types'; import { NzSubMenuComponent } from './submenu.component'; import * as i0 from "@angular/core"; export declare function MenuServiceFactory(serviceInsideDropDown: MenuService, serviceOutsideDropDown: MenuService): MenuService; export declare function MenuDropDownTokenFactory(isMenuInsideDropDownToken: boolean): boolean; export declare class NzMenuDirective implements AfterContentInit, OnInit, OnChanges, OnDestroy { private nzMenuService; isMenuInsideDropDown: boolean; private cdr; private directionality; static ngAcceptInputType_nzInlineCollapsed: BooleanInput; static ngAcceptInputType_nzSelectable: BooleanInput; listOfNzMenuItemDirective: QueryList; listOfNzSubMenuComponent: QueryList; nzInlineIndent: number; nzTheme: NzMenuThemeType; nzMode: NzMenuModeType; nzInlineCollapsed: boolean; nzSelectable: boolean; readonly nzClick: EventEmitter; actualMode: NzMenuModeType; dir: Direction; private inlineCollapsed$; private mode$; private destroy$; private listOfOpenedNzSubMenuComponent; setInlineCollapsed(inlineCollapsed: boolean): void; updateInlineCollapse(): void; constructor(nzMenuService: MenuService, isMenuInsideDropDown: boolean, cdr: ChangeDetectorRef, directionality: Directionality); ngOnInit(): void; ngAfterContentInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }