/** * Resolve recipe `strategy` to a single StrategyRegistration for the scanner module. */ import type { StrategyRegistration } from "../scanners/types.js"; import type { RuntimeConfig } from "./runtime-schema.js"; /** * Resolve config.strategy to a single StrategyRegistration for the scanner runtime module. * id is resolved wallet; name is the recipe name (config.name). * Throws if wallet is missing. */ export declare function resolveStrategyRegistration(config: RuntimeConfig): StrategyRegistration; /** @deprecated Use resolveStrategyRegistration instead. */ export declare function mapStrategiesToScannerRegistration(config: RuntimeConfig): StrategyRegistration[]; //# sourceMappingURL=map-strategies-registration.d.ts.map