import type { Assumption, BackendStatus, ContextPacket, ContextScope, Evidence, EvidenceLedger, IntelligenceDecision, Recommendation } from '@manehorizons/cadence-types'; export type ContextSources = { recommendations: Recommendation[]; evidence: Evidence[]; assumptions: Assumption[]; decisions: IntelligenceDecision[]; backend: BackendStatus; }; export declare function synthesizeContextPacket(scope: ContextScope, sources: ContextSources, now?: Date, evidenceLedger?: EvidenceLedger): ContextPacket; export declare function runContext(root: string, scope: ContextScope, now?: Date): Promise; //# sourceMappingURL=context.d.ts.map