/** * @module botbuilder-dialogs */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { BotStateMemoryScope } from './botStateMemoryScope'; /** * Memory that's scoped to the current conversation. */ export declare class ConversationMemoryScope extends BotStateMemoryScope { protected stateKey: string; /** * Initializes a new instance of the [ConversationMemoryScope](xref:botbuilder-dialogs.ConversationMemoryScope) class. */ constructor(); } //# sourceMappingURL=conversationMemoryScope.d.ts.map