import type { Strategy, StrategyContext, StrategyAction, EnrichedSnapshot } from "../strategy-types.js"; export declare class ClaudeAgentStrategy implements Strategy { readonly name = "claude-agent"; private _config; private get params(); describe(): { description: string; params: ({ name: string; type: "string"; required: boolean; description: string; default?: undefined; } | { name: string; type: "string"; required: boolean; default: string; description: string; } | { name: string; type: "number"; required: boolean; default: number; description: string; })[]; }; init(ctx: StrategyContext, _snapshot: EnrichedSnapshot): Promise; onTick(ctx: StrategyContext, snapshot: EnrichedSnapshot): Promise; onStop(_ctx: StrategyContext): Promise; }