/** Simple Test Suite Runner - TypeScript Implementation */ interface TestResult { passed: number; failed: number; failures: Array<{ test: string; error: string; }>; } type TestFunction = () => void | Promise; type TestCase = [string, TestFunction]; declare function runTestSuite(suiteName: string, testFunctions: TestCase[]): Promise; declare function runTestSuites(suites: Array<[string, TestCase[]]>): Promise; declare function createAssertions(): { equal: (actual: any, expected: any, message?: string) => void; notEqual: (actual: any, expected: any, message?: string) => void; truthy: (value: any, message?: string) => void; falsy: (value: any, message?: string) => void; }; export { runTestSuite, runTestSuites, createAssertions }; //# sourceMappingURL=runTestSuite.d.ts.map