import { z } from 'zod'; export declare const DecisionLogEntrySchema: z.ZodObject<{ timestamp: z.ZodString; phase: z.ZodEnum<["observe", "think", "act", "harness"]>; decision: z.ZodString; reason: z.ZodString; metadata: z.ZodOptional>; }, "strip", z.ZodTypeAny, { timestamp: string; reason: string; phase: "observe" | "think" | "act" | "harness"; decision: string; metadata?: Record | undefined; }, { timestamp: string; reason: string; phase: "observe" | "think" | "act" | "harness"; decision: string; metadata?: Record | undefined; }>; export type DecisionLogEntry = z.infer; //# sourceMappingURL=decision-log.schema.d.ts.map