/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../../../index"; import * as OctoAI from "../../../../api/index"; import * as core from "../../../../core"; import { ChatCompletionChunkChoice } from "./ChatCompletionChunkChoice"; import { UsageStats } from "./UsageStats"; export declare const ChatCompletionChunk: core.serialization.ObjectSchema; export declare namespace ChatCompletionChunk { interface Raw { choices: ChatCompletionChunkChoice.Raw[]; created: number; id: string; model: string; object?: "chat.completion.chunk" | null; usage?: UsageStats.Raw | null; } }