/** * Resolves the entry file for package metadata extraction. * Priority: source → module → main → src/index.ts → index.ts */ import type { PackageJsonLike } from './types.js'; /** * Detects the package entry file from package.json and cwd. * Returns absolute path or null if none found. */ export declare function detectEntryFile(packageJson: PackageJsonLike, cwd: string): string | null; //# sourceMappingURL=parseExports.d.ts.map