import type { CodeInspectionResult } from "./types.js"; /** Supported code file extensions for inspection. */ export declare const CODE_EXTENSIONS: Set; /** * Inspect a code file for JSDoc blocks, exports, and function signatures. * * @param projectRoot - Trusted project root. * @param filePath - Project-root-relative code file path. * @returns Code inspection result. * @throws {Error} When file extension is not supported. */ export declare function inspectCodeFile(projectRoot: string, filePath: string): CodeInspectionResult; //# sourceMappingURL=code-inspect.d.ts.map