import { Command } from "commander"; import type { ExchangeAdapter } from "../exchanges/index.js"; export declare function registerTradeCommands(program: Command, getAdapter: () => Promise, isJson: () => boolean, isDryRun?: () => boolean, getAdapterForExchange?: (exchange: string) => Promise): void;