import type { EvolveEntryMap } from '../types/types-entry-map.js'; import type { FlatEvolveOptions } from '../types/types-options.js'; /** * Normalizes the absolute paths of entry modules based on the provided evolve options and entry map. * * @param evolveOptions - The options for the evolve process. * @param evolveEntryMap - The map of evolve entries. * @returns An array of normalized entry module paths. */ export declare const normalizeEntryModuleAbsolutePath: (evolveOptions: FlatEvolveOptions, evolveEntryMap: EvolveEntryMap) => string[];