import { PackagerId, PackagerOptions } from "../types.cjs"; import SwcServerlessPlugin from "../index.cjs"; import { Packager } from "./packager.cjs"; //#region src/packagers/index.d.ts /** * Asynchronously create a Packager instance and memoize it. * * @this SwcServerlessPlugin - Active plugin instance * @param {string} packagerId - Well known packager id * @returns {Promise} - The selected Packager */ declare const getPackager: (this: SwcServerlessPlugin, packagerId: PackagerId, packagerOptions: PackagerOptions) => Promise; //#endregion export { getPackager }; //# sourceMappingURL=index.d.cts.map