/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License.
 */
/**
 * Represents the response of an adaptive card invoke request.
 */
export interface AdaptiveCardInvokeResponse {
    /**
     * The status code of the response.
     */
    statusCode: number;
    /**
     * The type of the response.
     */
    type: string;
    /**
     * The value of the response.
     */
    value: Record<string, unknown>;
}
