/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License.
 */
/**
 * Represents an Adaptive Card, which is a card framework that enables developers to exchange UI content in a common and consistent way.
 *
 * @remarks
 * @see {@link https://learn.microsoft.com/adaptive-cards/ | Adaptive Cards Documentation}
 */
export interface AdaptiveCard {
    /**
     * The type of the card, which must always be `AdaptiveCard`.
     */
    type: 'AdaptiveCard';
    [key: string]: any;
}
