/** center /effective `collab.templates[]` 条目的服务侧结构子集(registry-core 0.7 CollabTemplate 出参兼容; * wire 类型独立成模块——投影实现随切片演进[①=TeamTemplate,1.5=named workflow defaultArgs],wire 形状不动)。 */ export interface CollabTemplateWire { id: string; name: string; description?: string; topology: string; slots: Array<{ id: string; rolePrompt?: string; cardinality?: 1 | "N"; members?: Array<{ modelRef?: string; rolePrompt?: string; }>; tools?: string[]; }>; rounds: { max: number; earlyStop?: string; }; finalizer: { type: string; slot?: string; }; sharedContext?: { kind?: string; persistence?: string; }; budget?: { maxTokens?: number; maxCost?: number; }; enabled?: boolean; } //# sourceMappingURL=collab-wire.d.ts.map