/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { AgentStateMemoryScope } from './agentStateMemoryScope'; /** * Memory that's scoped to the current user. */ export declare class UserMemoryScope extends AgentStateMemoryScope { protected stateKey: string; /** * Initializes a new instance of the UserMemoryScope class. */ constructor(); }