/** * @deprecated This type will be available only from the `@cedarjs/context` package in a future release. */ export interface GlobalContext extends Record { } /** * @deprecated This function will be available only from the `@cedarjs/context` package in a future release. */ export declare const createContextProxy: (target: GlobalContext) => GlobalContext; /** * @deprecated This value will be available only from the `@cedarjs/context` package in a future release. */ export declare let context: GlobalContext; /** * Set the contents of the global context object. * * This completely replaces the existing context values such as currentUser. * * If you wish to extend the context simply use the `context` object directly, * such as `context.magicNumber = 1`, or `setContext({ ...context, magicNumber: 1 })` * * @deprecated This function will be available only from the `@cedarjs/context` package in a future release. */ export declare const setContext: (newContext: GlobalContext) => GlobalContext; //# sourceMappingURL=globalContext.d.ts.map