import type { CloudpackConfig, PackageDefinitionsCache, TargetEnvironment } from '@ms-cloudpack/common-types'; /** * Gets the entries map for a given package. An entries map is different from an exports map in that * the keys are relative paths to where the output should live, rather than how the entry is imported. * The data structure is used for bundler config; not for resolution of imports. */ export declare function getEntriesMapFromPackage(options: { inputPath: string; targetEnvironment: TargetEnvironment; }, context: { packages: PackageDefinitionsCache; config: Pick; }): Promise>; //# sourceMappingURL=getEntriesMapFromPackage.d.ts.map