import { AfterContentInit, QueryList } from '@angular/core';
import { TabPane } from '../tabs/tab-pane.component';
import { TabBarTab } from './tab-bar-tab.component';
export declare type TabBarPositionType = 'top' | 'bottom';
export declare class TabBar implements AfterContentInit {
    prefixCls: string;
    private _tintColor;
    private _unselectedTintColor;
    tabPanes: QueryList<TabPane>;
    tabBarTabs: QueryList<TabBarTab>;
    hidden: boolean;
    activeTab: number;
    barTintColor: string;
    tabBarPosition: TabBarPositionType;
    tintColor: string;
    unselectedTintColor: string;
    tabBar: boolean;
    constructor();
    selectTabPane(index: number): void;
    ngAfterContentInit(): void;
}
