/** * [WHO]: Provides resolveAgentRunLoopFramework(), buildAgentRunPolicy() * [FROM]: Depends on AgentLoopConfig, AgentRunPolicy, normalizeAgentLoopFramework * [TO]: Consumed by standard and structured-adaptive agent loops * [HERE]: core/lib/agent-core/src/agent-run-result.ts - shared result telemetry helpers */ import type { AgentLoopConfig, AgentLoopFramework, AgentRunPolicy } from "./types.js"; export declare function resolveAgentRunLoopFramework(config: AgentLoopConfig): AgentLoopFramework; export declare function buildAgentRunPolicy(config: AgentLoopConfig): AgentRunPolicy;