/** * 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 { CompletionChoice } from "./CompletionChoice"; import { UsageStats } from "./UsageStats"; export declare const CompletionResponse: core.serialization.ObjectSchema; export declare namespace CompletionResponse { interface Raw { choices: CompletionChoice.Raw[]; created: number; id: string; model: string; object?: "text_completion" | null; system_fingerprint: string; usage?: UsageStats.Raw | null; } }