import type { KlawConfig } from "../config/types.klaw.js"; import { buildAgentSystemPrompt } from "./system-prompt.js"; type AgentSystemPromptRenderParams = Parameters[0]; export type ResolvedAgentSystemPromptConfig = Pick; export type ConfiguredAgentSystemPromptParams = AgentSystemPromptRenderParams & { config?: KlawConfig; agentId?: string; }; export declare function resolveAgentSystemPromptConfig(params: { config?: KlawConfig; agentId?: string; }): ResolvedAgentSystemPromptConfig; export declare function buildConfiguredAgentSystemPrompt(params: ConfiguredAgentSystemPromptParams): string; export {};