import * as z from "zod"; export declare const ModelSchema: z.ZodObject<{ id: z.ZodString; object: z.ZodLiteral<"model">; created: z.ZodInt; owned_by: z.ZodString; name: z.ZodOptional; knowledge: z.ZodOptional; context: z.ZodOptional; architecture: z.ZodOptional; input_modalities: z.ZodOptional>>; output_modalities: z.ZodOptional>>; }, z.core.$strip>>; endpoints: z.ZodOptional>>; capabilities: z.ZodOptional>>; }, z.core.$loose>; export type Model = z.infer; export declare const ModelListSchema: z.ZodObject<{ object: z.ZodLiteral<"list">; data: z.ZodArray; created: z.ZodInt; owned_by: z.ZodString; name: z.ZodOptional; knowledge: z.ZodOptional; context: z.ZodOptional; architecture: z.ZodOptional; input_modalities: z.ZodOptional>>; output_modalities: z.ZodOptional>>; }, z.core.$strip>>; endpoints: z.ZodOptional>>; capabilities: z.ZodOptional>>; }, z.core.$loose>>; }, z.core.$strip>; export type ModelList = z.infer;