import type { PhasePlaybook, RuntimeDelegationAssignment, RuntimeExecutionAdapter, RuntimeParentAction, TaskContext } from "./types.js"; export declare function renderRuntimeChildPrompt({ taskId, phase, role, runtime, sessionId, assignment, context, contextManifestMarkdown, expectedResultArtifact, parentRuntimeAction, phasePlaybook, topWorkflowTemplate, }: { taskId: string; phase: string; role: string; runtime: RuntimeExecutionAdapter; sessionId: string; assignment: RuntimeDelegationAssignment; context: TaskContext; contextManifestMarkdown: string; expectedResultArtifact: string; parentRuntimeAction: RuntimeParentAction; phasePlaybook?: PhasePlaybook; topWorkflowTemplate?: string; }): string;