/** * @license * Copyright Google LLC 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://angular.io/license */ import { AfterContentChecked, AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef, NgZone, OnDestroy, QueryList } from '@angular/core'; import { ViewportRuler } from '@angular/cdk/scrolling'; import { Platform } from '@angular/cdk/platform'; import { Directionality } from '@angular/cdk/bidi'; import { ouiTabLabelWrapper } from './tab-label-wrapper'; import { OuiInkBar } from './ink-bar'; import { OuiPaginatedTabHeader } from './paginated-tab-header'; import { BooleanInput } from '@angular/cdk/coercion'; import * as i0 from "@angular/core"; /** * The header of the tab group which displays a list of all the tabs in the tab group. Includes * an ink bar that follows the currently selected tab. When the tabs list's width exceeds the * width of the header container, then arrows will be displayed to allow the user to scroll * left and right across the header. * @docs-private */ export declare class OuiTabHeader extends OuiPaginatedTabHeader implements AfterContentChecked, AfterContentInit, AfterViewInit, OnDestroy { _items: QueryList; _tabListContainer: ElementRef; _tabList: ElementRef; _tabListInner: ElementRef; _nextPaginator: ElementRef; _previousPaginator: ElementRef; _inkBar: OuiInkBar; /** Whether the ripple effect is disabled or not. */ get disableRipple(): boolean; set disableRipple(value: BooleanInput); private _disableRipple; constructor(elementRef: ElementRef, changeDetectorRef: ChangeDetectorRef, viewportRuler: ViewportRuler, dir: Directionality, ngZone: NgZone, platform: Platform, animationMode?: string); ngAfterContentInit(): void; protected _itemSelected(event: KeyboardEvent): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } //# sourceMappingURL=tab-header.d.ts.map