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