import type { BundlerAggregateModuleMap, BundlerDiscoverRule, BundlerManifestOptions, BundlerOptions } from "../../types.d.ts"; import type { NormalizedAggregateModuleMap, NormalizedDiscoverOptions, NormalizedDiscoverRule, NormalizedManifestOptions } from "./shared.js"; declare function normalizeAggregateModuleMap(aggregate: BundlerAggregateModuleMap | undefined, ruleKey: string): NormalizedAggregateModuleMap; declare function normalizeDiscoverRule(rule: BundlerDiscoverRule): NormalizedDiscoverRule; declare function normalizeDiscoverOptions(rootDir: string, discover: BundlerOptions["discover"], settings?: { ignoreDirs?: string[]; }): NormalizedDiscoverOptions[]; declare function normalizeManifestOptions(manifest: BundlerManifestOptions | undefined): NormalizedManifestOptions; export { normalizeAggregateModuleMap, normalizeDiscoverOptions, normalizeDiscoverRule, normalizeManifestOptions, }; //# sourceMappingURL=normalize.d.ts.map