/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as Cohere from "../index";
/**
 * A message from the assistant role can contain text and tool call information.
 */
export interface AssistantMessageResponse {
    role: "assistant";
    toolCalls?: Cohere.ToolCallV2[];
    toolPlan?: string;
    content?: Cohere.AssistantMessageResponseContentItem[];
    citations?: Cohere.Citation[];
}
