import { z } from "zod"; export declare const getLoadedModelInfoParamsSchema: z.ZodObject<{ modelId: z.ZodString; }, z.core.$strip>; export declare const getLoadedModelInfoRequestSchema: z.ZodObject<{ modelId: z.ZodString; type: z.ZodLiteral<"getLoadedModelInfo">; }, z.core.$strip>; export declare const loadedModelInfoSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ modelId: z.ZodString; isDelegated: z.ZodLiteral; modelType: z.ZodString; handlers: z.ZodArray; displayName: z.ZodOptional; addonPackage: z.ZodOptional; loadedAt: z.ZodCoercedDate; name: z.ZodOptional; path: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ modelId: z.ZodString; isDelegated: z.ZodLiteral; handlers: z.ZodArray; providerInfo: z.ZodObject<{ providerPublicKey: z.ZodString; }, z.core.$strip>; }, z.core.$strip>], "isDelegated">; export declare const getLoadedModelInfoResponseSchema: z.ZodObject<{ type: z.ZodLiteral<"getLoadedModelInfo">; info: z.ZodDiscriminatedUnion<[z.ZodObject<{ modelId: z.ZodString; isDelegated: z.ZodLiteral; modelType: z.ZodString; handlers: z.ZodArray; displayName: z.ZodOptional; addonPackage: z.ZodOptional; loadedAt: z.ZodCoercedDate; name: z.ZodOptional; path: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ modelId: z.ZodString; isDelegated: z.ZodLiteral; handlers: z.ZodArray; providerInfo: z.ZodObject<{ providerPublicKey: z.ZodString; }, z.core.$strip>; }, z.core.$strip>], "isDelegated">; }, z.core.$strip>; export type GetLoadedModelInfoParams = z.input; export type GetLoadedModelInfoRequest = z.infer; export type GetLoadedModelInfoResponse = z.infer; export type LoadedModelInfo = z.infer; //# sourceMappingURL=get-loaded-model-info.d.ts.map