export interface AgentState { activation: 'always' | 'mention'; fast: boolean; verbose: boolean; trace: boolean; thinking: number; reasoning: boolean; usage: 'off' | 'tokens' | 'full'; elevated: boolean; focus: boolean; prose: boolean; goal: string; steer: string; name: string; } export declare function getAgentState(): AgentState; export declare function setAgentState(patch: Partial): AgentState; //# sourceMappingURL=agent-state.d.ts.map