/** * 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 { FinishReason } from "./FinishReason"; import { Logprobs } from "./Logprobs"; export declare const CompletionChoice: core.serialization.ObjectSchema; export declare namespace CompletionChoice { interface Raw { finish_reason?: FinishReason.Raw | null; index: number; logprobs?: Logprobs.Raw | null; text: string; } }