import type { Strategy, StrategyContext, StrategyAction, EnrichedSnapshot } from "../strategy-types.js"; export declare class RfqAgentStrategy implements Strategy { readonly name = "rfq-agent"; private _config; private get params(); describe(): { description: string; params: ({ name: string; type: "number"; required: boolean; description: string; default?: undefined; } | { 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; }