/** * @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, ElementRef, EventEmitter, NgZone, OnDestroy, OnInit, QueryList, TemplateRef } from '@angular/core'; import { NzOptionGroupComponent } from './nz-option-group.component'; import { NzOptionLiComponent } from './nz-option-li.component'; import { NzOptionComponent } from './nz-option.component'; import { NzSelectService } from './nz-select.service'; export declare class NzOptionContainerComponent implements OnDestroy, OnInit { nzSelectService: NzSelectService; private cdr; private ngZone; private destroy$; private lastScrollTop; listOfNzOptionLiComponent: QueryList; dropdownUl: ElementRef; nzNotFoundContent: string; nzMenuItemSelectedIcon: TemplateRef; readonly nzScrollToBottom: EventEmitter; scrollIntoViewIfNeeded(option: NzOptionComponent): void; trackLabel(_index: number, option: NzOptionGroupComponent): string | TemplateRef; trackValue(_index: number, option: NzOptionComponent): any; constructor(nzSelectService: NzSelectService, cdr: ChangeDetectorRef, ngZone: NgZone); ngOnInit(): void; ngOnDestroy(): void; }