import { z } from "zod"; /** Zod schema for SDK supervisor actions. */ export declare const SdkSupervisorActionSchema: z.ZodEnum<{ health: "health"; heartbeat: "heartbeat"; diagnostics: "diagnostics"; readiness: "readiness"; }>; /** Zod schema for the `hivemind-sdk-supervisor` tool input. */ export declare const SdkSupervisorToolInputSchema: z.ZodObject<{ action: z.ZodEnum<{ health: "health"; heartbeat: "heartbeat"; diagnostics: "diagnostics"; readiness: "readiness"; }>; sessionId: z.ZodOptional; maxDiagnostics: z.ZodOptional; score: z.ZodOptional; tier: z.ZodOptional; }, z.core.$strip>; /** Inferred SDK supervisor tool input. */ export type SdkSupervisorToolInput = z.infer; //# sourceMappingURL=sdk-supervisor.schema.d.ts.map