import { Handler } from './runner'; interface TestResult { id: string; status: 'pass' | 'fail' | 'skip'; error?: string; } export declare const reportResults: (handlers: Handler[], testResults: TestResult[]) => void; export declare const executeTests: () => Promise<{ handlers: Handler[]; testStatus: TestResult[]; }>; export {};