import type { Context, ContextManager, User } from '@octopus-sdk/browser-core'; export interface CommonContext { user: User; context: Context; } export declare function buildCommonContext(globalContextManager: ContextManager, userContextManager: ContextManager): CommonContext;