import { z } from "zod"; export declare const recursiveEscalationTriggerSchema: z.ZodObject<{ id: z.ZodString; label: z.ZodString; description: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; label: string; description: string; }, { id: string; label: string; description: string; }>; export declare const recursiveEscalationHeuristicsSchema: z.ZodObject<{ version: z.ZodNumber; generatedAt: z.ZodString; summary: z.ZodString; preferredSequence: z.ZodArray; operatorHintCommand: z.ZodString; advisoryOnly: z.ZodBoolean; triggers: z.ZodArray, "many">; nonTriggers: z.ZodArray; }, "strip", z.ZodTypeAny, { generatedAt: string; summary: string; version: number; advisoryOnly: boolean; operatorHintCommand: string; preferredSequence: string[]; triggers: { id: string; label: string; description: string; }[]; nonTriggers: string[]; }, { generatedAt: string; summary: string; version: number; advisoryOnly: boolean; operatorHintCommand: string; preferredSequence: string[]; triggers: { id: string; label: string; description: string; }[]; nonTriggers: string[]; }>; export type RecursiveEscalationHeuristics = z.infer; export declare function parseRecursiveEscalationHeuristics(value: unknown): RecursiveEscalationHeuristics; //# sourceMappingURL=escalation-heuristics.d.ts.map