/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License.
 */
import { Activity } from './activity';
/**
 * Represents expected replies in a conversation.
 */
export interface ExpectedReplies {
    /**
     * List of activities representing the expected replies.
     */
    activities: Activity[];
}
