/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as serializers from "../index";
import * as Cohere from "../../api/index";
import * as core from "../../core";
import { ToolCall } from "./ToolCall";
import { ChatStreamEvent } from "./ChatStreamEvent";
export declare const ChatToolCallsGenerationEvent: core.serialization.ObjectSchema<serializers.ChatToolCallsGenerationEvent.Raw, Cohere.ChatToolCallsGenerationEvent>;
export declare namespace ChatToolCallsGenerationEvent {
    interface Raw extends ChatStreamEvent.Raw {
        text?: string | null;
        tool_calls: ToolCall.Raw[];
    }
}
