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