import { z } from 'zod'; export declare const DeltaSummarySchema: z.ZodObject<{ schemaVersion: z.ZodDefault; deltaId: z.ZodString; createdAt: z.ZodString; sinceSummaryId: z.ZodString; changes: z.ZodArray; newArtifacts: z.ZodArray; newBlockers: z.ZodArray; status: z.ZodString; }, "strip", z.ZodTypeAny, { schemaVersion: string; status: string; createdAt: string; deltaId: string; sinceSummaryId: string; changes: string[]; newArtifacts: string[]; newBlockers: string[]; }, { status: string; createdAt: string; deltaId: string; sinceSummaryId: string; changes: string[]; newArtifacts: string[]; newBlockers: string[]; schemaVersion?: string | undefined; }>; export type DeltaSummary = z.infer; //# sourceMappingURL=delta-summary.d.ts.map