export declare function globalSymbol(name: string): symbol; type GlobalSingletonsBase = Record; declare global { interface VcGlobalSingletons extends GlobalSingletonsBase { } var __voicenterUiPlusSingletons: Partial | undefined; } export declare function globalSingleton(key: K, init: () => VcGlobalSingletons[K]): VcGlobalSingletons[K]; export {};