export interface ScopeContextInput { source: string; channelId?: string; userId?: string; projectId?: string; } export interface MemoryScopeRef { kind: 'global' | 'user' | 'channel' | 'project'; id: string; } export declare function deriveMemoryScopes(input: ScopeContextInput): MemoryScopeRef[]; //# sourceMappingURL=scope-context.d.ts.map