/** Strands appState key; matches ACP session option id {@link HOOMAN_YOLO_CONFIG_ID}. */ export declare const YOLO_STATE_KEY = "hooman.yolo"; type AppStateLike = { get(key: string): unknown; set(key: string, value: unknown): void; }; type AgentLike = { appState: AppStateLike; }; export declare function isYoloEnabled(agent: AgentLike): boolean; export declare function setYoloEnabled(agent: AgentLike, enabled: boolean): void; export {};