import type { Strategy, StrategyContext, StrategyAction, EnrichedSnapshot } from "../strategy-types.js"; export declare class GridStrategy implements Strategy { readonly name = "grid"; describe(): { description: string; params: ({ name: string; type: "number"; 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; } | { name: string; type: "boolean"; required: boolean; default: boolean; description: string; })[]; }; private get params(); private _config; init(ctx: StrategyContext, snapshot: EnrichedSnapshot): Promise; onTick(ctx: StrategyContext, snapshot: EnrichedSnapshot): Promise; onStop(_ctx: StrategyContext): Promise; /** Build initial grid order actions */ private buildGridOrders; }