import { z } from 'zod'; export declare const ActiveContextSchema: z.ZodObject<{ schemaVersion: z.ZodDefault; objective: z.ZodString; acceptedPlan: z.ZodArray; latestDeltaRef: z.ZodString; sessionSummaryRef: z.ZodString; authorityMapRef: z.ZodOptional; targetPosture: z.ZodRecord; unresolved: z.ZodArray; budgetRef: z.ZodOptional; }, "strip", z.ZodTypeAny, { schemaVersion: string; objective: string; acceptedPlan: string[]; unresolved: string[]; latestDeltaRef: string; sessionSummaryRef: string; targetPosture: Record; authorityMapRef?: string | undefined; budgetRef?: string | undefined; }, { objective: string; acceptedPlan: string[]; unresolved: string[]; latestDeltaRef: string; sessionSummaryRef: string; targetPosture: Record; schemaVersion?: string | undefined; authorityMapRef?: string | undefined; budgetRef?: string | undefined; }>; export type ActiveContext = z.infer; //# sourceMappingURL=active-context.d.ts.map