/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Represents a search result for an Adaptive Card. */ export interface AdaptiveCardSearchResult { /** * The title of the search result. */ title: string; /** * The value associated with the search result. */ value: string; }