import type { ConstructType } from '../parser/sil.js'; export interface AgentDefinition { id: string; name: string; promptFile: string; requires: { agents: string[]; gates: string[]; constructs: ConstructType[]; }; produces: ConstructType[]; humanGate: boolean; } export declare const AGENTS: AgentDefinition[]; export declare function getAgent(id: string): AgentDefinition | undefined; //# sourceMappingURL=agents.d.ts.map