/**
 * @license
 * Copyright Akveo. All Rights Reserved.
 * Licensed under the MIT License. See License.txt in the project root for license information.
 */
import { OnDestroy } from '@angular/core';
import { NgaAuthService } from '../services/auth.service';
export declare class NgaAuthComponent implements OnDestroy {
    protected auth: NgaAuthService;
    subscription: any;
    authenticated: boolean;
    token: string;
    constructor(auth: NgaAuthService);
    ngOnDestroy(): void;
}
