/**
 * 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 { ToolCallDelta } from "./ToolCallDelta";
import { ChatStreamEvent } from "./ChatStreamEvent";
export declare const ChatToolCallsChunkEvent: core.serialization.ObjectSchema<serializers.ChatToolCallsChunkEvent.Raw, Cohere.ChatToolCallsChunkEvent>;
export declare namespace ChatToolCallsChunkEvent {
    interface Raw extends ChatStreamEvent.Raw {
        tool_call_delta: ToolCallDelta.Raw;
    }
}
