import { z } from "zod"; /** Zod schema for command-engine actions. */ export declare const CommandEngineActionSchema: z.ZodEnum<{ discover: "discover"; analyze_contract: "analyze_contract"; render_context: "render_context"; transform_messages: "transform_messages"; route_preview: "route_preview"; list_commands: "list_commands"; }>; /** Zod schema for command-engine message roles. */ export declare const CommandEngineMessageSchema: z.ZodObject<{ role: z.ZodEnum<{ assistant: "assistant"; user: "user"; system: "system"; }>; content: z.ZodString; }, z.core.$strip>; /** Zod schema for the `hivemind-command-engine` tool input. */ export declare const CommandEngineToolInputSchema: z.ZodObject<{ action: z.ZodEnum<{ discover: "discover"; analyze_contract: "analyze_contract"; render_context: "render_context"; transform_messages: "transform_messages"; route_preview: "route_preview"; list_commands: "list_commands"; }>; commandName: z.ZodOptional; arguments: z.ZodOptional; context: z.ZodOptional; messages: z.ZodOptional; content: z.ZodString; }, z.core.$strip>>>; maxCharacters: z.ZodOptional; score: z.ZodOptional; tier: z.ZodOptional; }, z.core.$strip>; /** Inferred command-engine tool input. */ export type CommandEngineToolInput = z.infer; //# sourceMappingURL=command-engine.schema.d.ts.map