/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Defines the types of responses that can be returned after executing an Adaptive Card action. */ export declare enum AdaptiveCardActionExecuteResponseType { /** * Replaces the Adaptive Card only for the user who interacted with it. */ REPLACE_FOR_INTERACTOR = 0, /** * Replaces the Adaptive Card for all users. */ REPLACE_FOR_ALL = 1, /** * Sends a new message containing an Adaptive Card to all users. */ NEW_MESSAGE_FOR_ALL = 2 }