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