/** * 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 { CdkVirtualScrollViewport } from '@angular/cdk/scrolling'; import { AfterViewInit, ElementRef, EventEmitter, OnChanges, SimpleChanges, TemplateRef } from '@angular/core'; import { VtsSafeAny } from '@ui-vts-kit/ng-vts/core/types'; import { VtsSelectItemInterface, VtsSelectModeType } from './select.types'; import * as i0 from "@angular/core"; export declare class VtsOptionContainerComponent implements OnChanges, AfterViewInit { private elementRef; notFoundContent: string | TemplateRef | undefined; menuItemSelectedIcon: TemplateRef | null; dropdownRender: TemplateRef | null; activatedValue: VtsSafeAny | null; listOfSelectedValue: VtsSafeAny[]; vtsCustomCompareFn: (o1: VtsSafeAny, o2: VtsSafeAny) => boolean; mode: VtsSelectModeType; matchWidth: boolean; itemSize: number; maxItemLength: number; listOfContainerItem: VtsSelectItemInterface[]; readonly itemClick: EventEmitter; readonly scrollToBottom: EventEmitter; cdkVirtualScrollViewport: CdkVirtualScrollViewport; private scrolledIndex; constructor(elementRef: ElementRef); onItemClick(value: VtsSafeAny): void; onItemHover(value: VtsSafeAny): void; trackValue(_index: number, option: VtsSelectItemInterface): VtsSafeAny; onScrolledIndexChange(index: number): void; scrollToActivatedValue(): void; ngOnChanges(changes: SimpleChanges): void; ngAfterViewInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }