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