/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License.
 */
import { ChannelAccount } from '../conversation/channelAccount';
/**
 * Represents a Mention entity.
 */
export interface Mention {
    /**
     * The account that is mentioned.
     */
    mentioned: ChannelAccount;
    /**
     * The text of the mention.
     */
    text: string;
    /**
     * The type of the mention.
     */
    type: string;
}
