/** * Context Schema — Zod 数据模型 * 定义 .speccore/local/context.json 的运行时上下文数据结构 */ import { z } from 'zod'; export declare const HistoryEntrySchema: any; export declare const ContextSchema: any; export type HistoryEntry = z.infer; export type Context = z.infer; export declare const DEFAULT_CONTEXT: Context; //# sourceMappingURL=context.schema.d.ts.map