/** * Zod schema for archive_learning tool parameters */ import { z } from "zod"; /** * Archive learning parameters schema * * Accepts full UUIDs or short hex prefixes (4-32 chars). * Short prefixes are resolved to full UUIDs at runtime. */ export declare const ArchiveLearningParamsSchema: z.ZodObject<{ id: z.ZodString; reason: z.ZodOptional; }, "strip", z.ZodTypeAny, { id: string; reason?: string | undefined; }, { id: string; reason?: string | undefined; }>; export type ArchiveLearningParams = z.infer; //# sourceMappingURL=archive-learning.d.ts.map