/** * Return a value. * * @param key A string. * @return The stored value or `undefined`. */ export declare function globalStateGet(key: string, defaultValue?: any): Promise; /** * Store a value. The value must be JSON-stringifyable. * * @param key A string. * @param value A value. MUST not contain cyclic references. */ export declare function globalStateUpdate(key: string, value: any): Promise; //# sourceMappingURL=globalState.d.ts.map