import { CanActivate } from '@angular/router'; import { Observable } from 'rxjs'; import { RoutingService, CmsService } from '@spartacus/core'; export declare class CmsPageGuards implements CanActivate { private routingService; private cmsService; static guardName: string; constructor(routingService: RoutingService, cmsService: CmsService); canActivate(): Observable; hasPage(): Observable; }