import type { ModuleInfo, PluginContext } from "rollup"; interface ExportInfo { exportedName: string; id: string; sourceName: string; } declare const gatherExports: (context: PluginContext, module_: ModuleInfo) => AsyncGenerator; export = gatherExports;