/** * Export scanning using oxc-parser and oxc-resolver * * This implementation follows the pattern from oxc-linter's export.rs * using the public npm packages oxc-parser and oxc-resolver. */ type ResolvedExports = { [key: string]: string; }; /** * Get all exports from a package * * This is the main entry point that matches the API of getAllExports in exports.utils.ts */ export declare function getAllExports(packageString: string, context: string, lookupPath: string, installPath?: string): Promise; /** * Get exports details from code (compatibility function) * * This provides the same API as the existing getExportsDetails for backward compatibility * Returns simple string arrays for exports (without moduleRequest info) */ export declare function getExportsDetails(code: string, filename?: string): { exports: string[]; exportAllLocations: string[]; }; export {}; //# sourceMappingURL=exports.utils.d.ts.map