export declare const RIOT: unique symbol; export declare const TAGS: unique symbol; declare namespace Globals { function set(key: string | symbol, value: any): any; function get(key: string | symbol, defaultValue?: any): any; function getTags(): any; function getRiot(): any; } export default Globals;