import { z } from 'zod'; export declare const MemorySessionSummarySchema: z.ZodObject<{ objective: z.ZodString; state: z.ZodArray; decisions: z.ZodArray; constraints: z.ZodArray; blockers: z.ZodArray; nextActions: z.ZodArray; references: z.ZodArray; }, "strip", z.ZodTypeAny, { decisions: string[]; state: string[]; objective: string; constraints: string[]; references: string[]; blockers: string[]; nextActions: string[]; }, { decisions: string[]; state: string[]; objective: string; constraints: string[]; references: string[]; blockers: string[]; nextActions: string[]; }>; export type MemorySessionSummary = z.infer; //# sourceMappingURL=memory-session-summary.d.ts.map