import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ChatCompletionChoice } from "./chatcompletionchoice.js"; import { UsageInfo } from "./usageinfo.js"; export type ChatCompletionResponse = { id: string; object: string; model: string; usage: UsageInfo; created: number; choices: Array; }; /** @internal */ export declare const ChatCompletionResponse$inboundSchema: z.ZodType; export declare function chatCompletionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=chatcompletionresponse.d.ts.map