/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as Cohere from "../index";
/**
 * A streamed delta event which contains a delta of chat text content.
 */
export interface ChatContentDeltaEvent extends Cohere.ChatStreamEventType {
    index?: number;
    delta?: Cohere.ChatContentDeltaEventDelta;
}
