import type { PackageInfo } from '../types/PackageInfo'; import type { BeachballOptions } from '../types/BeachballOptions'; /** * Attempts to pack the package and move the tgz to `options.packPath`. * Depending on `packInfo.packStyle`, either the filename will be prefixed with a number, * or it will be put in a numbered folder. * @returns true if successful, false if not. */ export declare function packPackage(packageInfo: PackageInfo, options: Required> & Pick & { packInfo: { /** Index of this package in the topologically-sorted list to publish */ index: number; /** Total number of packages to publish */ total: number; } | { /** Array of layers of package names returned by `getPackageGraphLayers` */ layers: string[][]; }; }): Promise; //# sourceMappingURL=packPackage.d.ts.map