import { extractMemoryCandidatesFromFeedback } from './feedback-memory.js'; import { buildProofPacketV1 } from './proof-packet.js'; import type { IntentRouteDecision } from './types.js'; export interface ThreadAutonomyPrelude { decision: IntentRouteDecision; proof: ReturnType; memoryCandidates: ReturnType; activeMemorySignals: string[]; activeRules: number; executionContext: string; } export declare function runThreadAutonomyPrelude(input: { agentId: string; threadId: string; taskId: string; message: string; }): Promise; //# sourceMappingURL=thread-autonomy.d.ts.map