import type { DiscoveredFile, NormalizedAggregateRule } from "./shared.js"; type FilteredAggregateFiles = { matchedFiles: DiscoveredFile[]; skippedSources: string[]; }; declare function filterAggregateMatchedFiles(args: { matchedFiles: DiscoveredFile[]; rule: NormalizedAggregateRule; }): Promise; declare function hasModuleExport(args: { exportName: string; filePath: string; source: string; }): boolean; export { filterAggregateMatchedFiles, hasModuleExport, }; export type { FilteredAggregateFiles, }; //# sourceMappingURL=exports.d.ts.map