/**
 * @license
 * Copyright Akveo. All Rights Reserved.
 * Licensed under the MIT License. See License.txt in the project root for license information.
 */
import { EventEmitter } from '@angular/core';
import { Router } from '@angular/router';
export declare class NgaRouteTabsetComponent {
    private router;
    fullWidthValue: boolean;
    tabs: any[];
    fullWidth: boolean;
    changeTab: EventEmitter<any>;
    constructor(router: Router);
    selectTab(tab: any): void;
}
