/** * Interactive Test Explorer — Terminal UI for browsing test results. * Simple text-based UI using readline (no curses dependency). */ import type { SuiteResult, TestResult } from './types'; export interface ExplorerOptions { reportPath: string; } /** * Load a suite result from a JSON report file. */ export declare function loadReport(reportPath: string): SuiteResult; /** * Format a test list with pass/fail indicators. */ export declare function formatTestList(result: SuiteResult, selectedIndex: number): string; /** * Format test detail view. */ export declare function formatTestDetail(test: TestResult): string; /** * Run the interactive explorer in the terminal. */ export declare function runExplorer(reportPath: string): Promise; //# sourceMappingURL=explorer.d.ts.map