import { Router } from '@angular/router';
import { NgaUser } from '../../models/user';
import { NgaAuthService } from '../../services/auth.service';
export declare class NgaResetPasswordComponent {
    protected service: NgaAuthService;
    protected router: Router;
    redirectDelay: number;
    submitted: boolean;
    errors: string[];
    messages: string[];
    user: NgaUser;
    constructor(service: NgaAuthService, router: Router);
    resetPass(provider: string): void;
    getConfigValue(provider: string, key: string): any;
}
