import { FormGroup } from '@angular/forms'; import { PrevRouteService } from '../../../../routing/services/prev-route.service'; import { Router } from '@angular/router'; import { Storage } from '@ionic/storage'; export declare class ChBaseComponent { private prevRouteService; protected router: Router; protected storage: Storage; mustLoginAgain: boolean; form: FormGroup; lastPageName: string; currentRoute: string; constructor(prevRouteService: PrevRouteService, router: Router, storage: Storage); setMustRelogin(): void; }