import { QueryList, AfterContentInit } from '@angular/core';
import { TabItem } from './tab-item.component';
export declare class Tabs implements AfterContentInit {
    /**
     * Set to `true` to fit tabs to container.
     */
    fitted: boolean;
    /**
     * List of tabs associated to the main wrapper.
     */
    tabs: QueryList<TabItem>;
    ngAfterContentInit(): void;
    /**
     * Selects a particular tab and activates it.
     */
    selectTab(tabItem: TabItem): void;
    isTemplate(value: any): boolean;
}
