/** * Utility for scanning TypeScript/JavaScript source files to find exports. * Uses TypeScript's compiler API to accurately parse and extract export information. */ export interface ExportInfo { name: string; filePath: string; kind: 'variable' | 'function' | 'class' | 'type' | 'interface' | 'enum' | 'reexport' | 'default'; isDefault: boolean; } export interface ExportScanResult { exports: Map; errors: string[]; } /** * Scans the src directory of a package and returns all exports */ export declare function scanPackageExports(packageRoot: string): Promise; /** * Finds the source file that exports a specific name */ export declare function findExportSource(packageRoot: string, exportName: string): Promise; /** * Clears the export cache (useful for testing) */ export declare function clearExportCache(): void; //# sourceMappingURL=exportScanner.d.ts.map