/**
 * 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 { ChatContentStartEventDelta } from "./ChatContentStartEventDelta";
import { ChatStreamEventType } from "./ChatStreamEventType";
export declare const ChatContentStartEvent: core.serialization.ObjectSchema<serializers.ChatContentStartEvent.Raw, Cohere.ChatContentStartEvent>;
export declare namespace ChatContentStartEvent {
    interface Raw extends ChatStreamEventType.Raw {
        index?: number | null;
        delta?: ChatContentStartEventDelta.Raw | null;
    }
}
