import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, CanActivateChild, CanDeactivate } from '@angular/router'; import { Store } from '@ngrx/store'; import { DigiAIXCoreAppState } from '../app-state'; /** * @deprecated use data property instead */ export declare class ForceHideSidebarGuard implements CanActivate, CanActivateChild, CanDeactivate { store$: Store; constructor(store$: Store); canActivate(next: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean; canActivateChild(childRoute: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean; canDeactivate(component: any, currentRoute: ActivatedRouteSnapshot, currentState: RouterStateSnapshot, nextState?: RouterStateSnapshot): boolean; }