/** * Pure DSL tick: state + price → next state and actions. */ import type { DslState, DslTickResult } from "../../types/dsl/index.js"; export declare function dslTick(state: DslState, price: number, now: string): DslTickResult; //# sourceMappingURL=tick.d.ts.map