import { Scope } from '../scope/scope.instance'; export declare function makeScopeSegment(scope: Scope): string; export declare function buildDataKey(scope: Scope, prefix: string, key: string): string; export declare function buildChannel(scope: Scope, prefix: string, channel: string): string; export declare const Json: { encode(value: T): string; decode(str: string | null): T | null; };