import { AfterContentInit, QueryList, EventEmitter } from '@angular/core'; import { TabBarItemComponent } from './tab-bar-item.component'; import * as i0 from "@angular/core"; export type TabBarTabPositionType = 'top' | 'bottom'; export interface TabBarOnPressEvent { index: number; title: string; key: string; } export declare class TabBarComponent implements AfterContentInit { prefixCls: string; private _activeTab; private _tintColor; private _unselectedTintColor; tabBarItems: QueryList; hidden: boolean; prerenderingSiblingsNumber: number; get activeTab(): number; set activeTab(tab: number); barTintColor: string; tabBarPosition: TabBarTabPositionType; get tintColor(): string; set tintColor(color: string); get unselectedTintColor(): string; set unselectedTintColor(color: string); onPress: EventEmitter; tabBar: boolean; constructor(); selectTabBarItem(index: number): void; tabBarTabOnPress(pressParam: TabBarOnPressEvent): void; ngAfterContentInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }