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