import { z } from "zod"; export declare const getModelInfoParamsSchema: z.ZodObject<{ name: z.ZodString; }, z.core.$strip>; export declare const getModelInfoRequestSchema: z.ZodObject<{ name: z.ZodString; type: z.ZodLiteral<"getModelInfo">; }, z.core.$strip>; export declare const loadedInstanceSchema: z.ZodObject<{ registryId: z.ZodString; loadedAt: z.ZodCoercedDate; config: z.ZodOptional; }, z.core.$strip>; export declare const cacheFileInfoSchema: z.ZodObject<{ filename: z.ZodString; path: z.ZodString; expectedSize: z.ZodNumber; sha256Checksum: z.ZodString; isCached: z.ZodBoolean; actualSize: z.ZodOptional; cachedAt: z.ZodOptional>; }, z.core.$strip>; export declare const modelInfoSchema: z.ZodObject<{ name: z.ZodString; modelId: z.ZodString; registryPath: z.ZodOptional; registrySource: z.ZodOptional; blobCoreKey: z.ZodOptional; blobBlockOffset: z.ZodOptional; blobBlockLength: z.ZodOptional; blobByteOffset: z.ZodOptional; engine: z.ZodOptional; quantization: z.ZodOptional; params: z.ZodOptional; expectedSize: z.ZodNumber; sha256Checksum: z.ZodString; addon: z.ZodEnum<{ embeddings: "embeddings"; diffusion: "diffusion"; tts: "tts"; ocr: "ocr"; vla: "vla"; llm: "llm"; whisper: "whisper"; bci: "bci"; nmt: "nmt"; parakeet: "parakeet"; classification: "classification"; vad: "vad"; other: "other"; }>; isCached: z.ZodBoolean; isLoaded: z.ZodBoolean; cacheFiles: z.ZodArray; cachedAt: z.ZodOptional>; }, z.core.$strip>>; actualSize: z.ZodOptional; cachedAt: z.ZodOptional>; loadedInstances: z.ZodOptional; config: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>; export declare const getModelInfoResponseSchema: z.ZodObject<{ type: z.ZodLiteral<"getModelInfo">; modelInfo: z.ZodObject<{ name: z.ZodString; modelId: z.ZodString; registryPath: z.ZodOptional; registrySource: z.ZodOptional; blobCoreKey: z.ZodOptional; blobBlockOffset: z.ZodOptional; blobBlockLength: z.ZodOptional; blobByteOffset: z.ZodOptional; engine: z.ZodOptional; quantization: z.ZodOptional; params: z.ZodOptional; expectedSize: z.ZodNumber; sha256Checksum: z.ZodString; addon: z.ZodEnum<{ embeddings: "embeddings"; diffusion: "diffusion"; tts: "tts"; ocr: "ocr"; vla: "vla"; llm: "llm"; whisper: "whisper"; bci: "bci"; nmt: "nmt"; parakeet: "parakeet"; classification: "classification"; vad: "vad"; other: "other"; }>; isCached: z.ZodBoolean; isLoaded: z.ZodBoolean; cacheFiles: z.ZodArray; cachedAt: z.ZodOptional>; }, z.core.$strip>>; actualSize: z.ZodOptional; cachedAt: z.ZodOptional>; loadedInstances: z.ZodOptional; config: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>; }, z.core.$strip>; export type GetModelInfoParams = z.input; export type GetModelInfoRequest = z.infer; export type LoadedInstance = z.infer; export type CacheFileInfo = z.infer; export type ModelInfo = z.infer; export type GetModelInfoResponse = z.infer; //# sourceMappingURL=get-model-info.d.ts.map