import type { KlawConfig } from "../../config/types.klaw.js"; import type { ContextEngineRuntimeContext } from "../../context-engine/types.js"; export type ResolveContextEngineCapabilitiesParams = { config?: KlawConfig; sessionKey?: string; agentId?: string; contextEnginePluginId?: string; purpose: string; }; /** * Build host-owned capabilities that are bound to one context-engine runtime call. */ export declare function resolveContextEngineCapabilities(params: ResolveContextEngineCapabilitiesParams): Pick;