import { Logprobs } from "./Logprobs";
export interface Choice {
    text: string;
    index?: number;
    logprobs?: Logprobs | null;
    finishReason?: string;
}
