import { z } from "zod"; export declare const embedParamsSchema: z.ZodObject<{ modelId: z.ZodString; text: z.ZodUnion]>; }, z.core.$strip>; export declare const embedRequestSchema: z.ZodObject<{ modelId: z.ZodString; text: z.ZodUnion]>; type: z.ZodLiteral<"embed">; requestId: z.ZodOptional; }, z.core.$strip>; export declare const embedStatsSchema: z.ZodObject<{ totalTime: z.ZodOptional; tokensPerSecond: z.ZodOptional; totalTokens: z.ZodOptional; backendDevice: z.ZodOptional>; contextSize: z.ZodOptional; }, z.core.$strip>; export declare const embedResponseSchema: z.ZodObject<{ type: z.ZodLiteral<"embed">; success: z.ZodBoolean; embedding: z.ZodDefault, z.ZodArray>]>>; stats: z.ZodOptional; tokensPerSecond: z.ZodOptional; totalTokens: z.ZodOptional; backendDevice: z.ZodOptional>; contextSize: z.ZodOptional; }, z.core.$strip>>; error: z.ZodOptional; }, z.core.$strip>; export type EmbedParams = z.infer; export type EmbedRequest = z.infer; export type EmbedResponse = z.infer; export type EmbedStats = z.infer; //# sourceMappingURL=embed.d.ts.map