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