import { z } from "zod"; export declare const ChatCompletionSchema: z.ZodObject<{ object: z.ZodLiteral<"chat.completion">; id: z.ZodString; model: z.ZodString; choices: z.ZodArray; content: z.ZodNullable; }, z.core.$strip>; finish_reason: z.ZodEnum<{ length: "length"; stop: "stop"; tool_calls: "tool_calls"; content_filter: "content_filter"; function_call: "function_call"; }>; logprobs: z.ZodOptional; }, z.core.$strip>>; created: z.ZodNumber; usage: z.ZodNullable>; }, z.core.$strip>; export declare const ChatCompletionChunkSchema: z.ZodObject<{ object: z.ZodLiteral<"chat.completion.chunk">; id: z.ZodString; model: z.ZodString; choices: z.ZodArray>; content: z.ZodOptional>; }, z.core.$strip>>; finish_reason: z.ZodNullable>; logprobs: z.ZodOptional; }, z.core.$strip>>; created: z.ZodNumber; usage: z.ZodNullable>; }, z.core.$strip>;