import { Command } from "commander"; import type { ExchangeAdapter } from "../exchanges/index.js"; /** Run health check and return results + render. Exported for use by status --health. */ export declare function runHealthCheck(isJson: () => boolean): Promise; export declare function registerRiskCommands(program: Command, getAdapterForExchange: (exchange: string) => Promise, isJson: () => boolean): void;