///
///
///
import { IScope } from 'angular';
import './tabs.scss';
export interface IBiTab {
name: string;
title: string;
icon: string;
id: string;
}
export interface TabsRouterScope extends IScope {
tabs: IBiTab[];
}
declare const _default: () => {
restrict: string;
template: any;
transclude: boolean;
scope: {
tabs: string;
btOptions: string;
};
link(scope: TabsRouterScope, element: JQuery, attr: ng.IAttributes, ctrls: any): void;
};
export default _default;