/**
 * Copyright(c) Microsoft Corporation.All rights reserved.
 * Licensed under the MIT License.
 */
import { ConversationMembers } from './conversationMembers';
/**
 * Represents the result of a conversation query.
 */
export interface ConversationsResult {
    /**
     * A token to retrieve the next page of results.
     */
    continuationToken: string;
    /**
     * A list of conversation members.
     */
    conversations: ConversationMembers[];
}
