/** * Portable test association discovery from in-memory chunks. * Finds test files that import given source files by analyzing chunk metadata. */ import type { CodeChunk } from './types.js'; /** * Find test files that import the given source files. * Works entirely from in-memory chunks — no VectorDB or filesystem needed. * * @param filepaths - Source file paths to find tests for * @param chunks - All indexed chunks (test + source files) * @param workspaceRoot - Workspace root for path normalization (defaults to cwd) * @returns Map of source filepath → array of test file paths that import it */ export declare function findTestAssociationsFromChunks(filepaths: string[], chunks: CodeChunk[], workspaceRoot?: string): Map; //# sourceMappingURL=test-associations.d.ts.map