import type { SessionConfigOption, SetSessionConfigOptionRequest } from "@agentclientprotocol/sdk"; import type { Agent } from "@strands-agents/sdk"; import type { Config } from "../../core/config.js"; import type { SessionConfig } from "../../core/session-config.js"; export declare const HOOMAN_SESSION_MODE_CONFIG_ID: "hooman.sessionMode"; export declare const HOOMAN_MODEL_CONFIG_ID: "hooman.model"; /** Same key as agent {@link YOLO_STATE_KEY}. */ export declare const HOOMAN_YOLO_CONFIG_ID = "hooman.yolo"; export declare function buildSessionConfigOptions(config: Config | SessionConfig, agent: Agent): SessionConfigOption[]; export declare function applySessionConfigOption(config: SessionConfig, params: SetSessionConfigOptionRequest, agent: Agent): void;