/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as Cohere from "../index";
export interface ChatToolCallsGenerationEvent extends Cohere.ChatStreamEvent {
    /** The text generated related to the tool calls generated */
    text?: string;
    toolCalls: Cohere.ToolCall[];
}
