import type { PackageDefinitionsCache } from '@ms-cloudpack/common-types'; /** * Reads a package definition and derives a flat array of dependencies to externalize for bundling. * * To reduce the chances of accidentally bundling something that should be external, this includes * the names of original dependencies of all types (prior to transforms), as well as any * `includedDependencies` from config that were added by `createPackageSettingsTransform`. */ export declare function getExternalsFromPackage(options: { inputPath: string; }, context: { packages: PackageDefinitionsCache; }): Promise; //# sourceMappingURL=getExternalsFromPackage.d.ts.map