/** * E2E Test Runner - Health Command * * Check connectivity to all configured adapters */ import type { AdapterType, CLIArgs } from '../types'; export interface AdapterHealthResult { adapter: AdapterType; healthy: boolean; latency?: number; error?: string; } export interface HealthCommandResult { exitCode: number; results: AdapterHealthResult[]; allHealthy: boolean; } /** * Execute the health command */ export declare function healthCommand(args: CLIArgs): Promise; //# sourceMappingURL=health.command.d.ts.map