import { Command } from "commander"; import type { ExchangeAdapter } from "../exchanges/index.js"; /** Exported for smart landing page in index.ts */ export declare function getWalletSetupStatus(): { hasWallets: boolean; active: Record; wallets: Record; }; /** Exported so config.ts can resolve the active wallet key */ export declare function getActiveWalletKey(exchange: string): string | null; /** Get wallet key by name. Returns null if wallet doesn't exist. */ export declare function getWalletKeyByName(name: string): string | null; export declare function registerWalletCommands(program: Command, isJson: () => boolean, getAdapter?: () => Promise, getPacificaAdapter?: () => unknown): void;