import { NAbstractWsAdapter, NContextService, NManagerService } from "../.."; export declare class Guards { static isNotUndefined(x: undefined | any): boolean; static isString(x: string | unknown): x is string; static isRoute(x: NContextService.Store): x is NContextService.RouteStore; static isEvent(x: NContextService.Store): x is NContextService.EventStore; static isEventStructure(x: unknown): x is NAbstractWsAdapter.ClientEventStructure; static isManagerScope(x: string): x is NManagerService.Scope; static isAuthCommands(x: string): x is NManagerService.Scope; static isLoggerCommands(x: string): x is NManagerService.Scope; static isDiscoveryCommands(x: string): x is NManagerService.DiscoveryCommands; }