/** * 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, OnDestroy, TemplateRef } from '@angular/core'; import { VtsSafeAny } from '@ui-vts-kit/ng-vts/core/types'; import { VtsTabNavItemDirective } from './tab-nav-item.directive'; import { VtsDropdownPositionType } from './tab.component'; import * as i0 from "@angular/core"; export declare class VtsTabNavOperationComponent implements OnDestroy { cdr: ChangeDetectorRef; private elementRef; items: VtsTabNavItemDirective[]; addable: boolean; addIcon: string | TemplateRef; showMoreTabs: boolean; vtsDropdownPosition: VtsDropdownPositionType; vtsDropdownContent?: TemplateRef; vtsDropdownClass: string; readonly addClicked: EventEmitter; readonly selected: EventEmitter; closeAnimationWaitTimeoutId: number | ReturnType; menuOpened: boolean; private readonly element; constructor(cdr: ChangeDetectorRef, elementRef: ElementRef); onSelect(item: VtsTabNavItemDirective): void; onContextmenu(item: VtsTabNavItemDirective, e: MouseEvent): void; showItems(): void; menuVisChange(visible: boolean): void; getElementWidth(): number; getElementHeight(): number; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }