import { Router, ActivatedRouteSnapshot } from '@angular/router'; import { AuthenticationService } from '../../security/authentication/authentication.service'; export declare class NavigationService { private router; private authService; constructor(router: Router, authService: AuthenticationService); goToDashboardPage(): void; goToSigninPage(): void; goToChooseOrganizationPage(): void; goToSetPasswordPage(): void; isLoginPageRoute(route: ActivatedRouteSnapshot): boolean; isChooseOrganizationRoute(route: ActivatedRouteSnapshot): boolean; isChangePasswordRoute(route: ActivatedRouteSnapshot): boolean; private checkRoutePageKey; goToAppropriateSecurityPageOrDashboard(): Promise; goToZCoreSigninPage(): void; }