/** * Koi -- turn * * @module */ import type { AgentMessage as KoiMessage } from "@mariozechner/pi-agent-core"; import type { ImageContent } from "@mariozechner/pi-ai"; import type { EmbeddedRunAttemptParams, EmbeddedRunAttemptResult } from "./types.js"; export declare function injectHistoryImagesIntoMessages(messages: KoiMessage[], historyImagesByIndex: Map): boolean; export declare function runEmbeddedAttempt(params: EmbeddedRunAttemptParams): Promise;