export declare const TEAM_ORCHESTRATION_INTENTS: readonly ['followup-reuse', 'followup-relaunch', 'stalled-unblock', 'done-review-or-shutdown', 'pending-mailbox-review']; export declare const ORCHESTRATION_INTENT_TAG_PREFIX = "[OMX_INTENT:"; export declare function buildOrchestrationIntentTag(intent: any): string; export declare function appendOrchestrationIntentTag(text: any, intent: any): string; export declare function stripOrchestrationIntentTags(text: any): string; export declare function classifyLeaderActionState({ allWorkersIdle, workerPanesAlive, taskCounts, }?: { allWorkersIdle?: boolean | undefined; taskCounts?: {} | undefined; workerPanesAlive?: boolean | undefined; }): "done_waiting_on_leader" | "still_actionable" | "stuck_waiting_on_leader"; export declare function resolveAllWorkersIdleIntent(leaderActionState?: string): "done-review-or-shutdown" | "followup-reuse" | "stalled-unblock"; export declare function resolveLeaderNudgeIntent({ nudgeReason, leaderActionState }?: { leaderActionState?: string | undefined; nudgeReason?: string | undefined; }): "done-review-or-shutdown" | "followup-relaunch" | "followup-reuse" | "pending-mailbox-review" | "stalled-unblock"; export declare function resolveWorkerIdleIntent(currentState?: string): "done-review-or-shutdown" | "followup-reuse"; //# sourceMappingURL=orchestration-intent.d.ts.map