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 the options, 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 & ({ /** Array of layers of package names returned by `getPackageGraphLayers` */ layers: string[][]; } | { packInfo: { /** Index of this package in the topologically-sorted list to publish */ index: number; /** Total number of packages to publish */ total: number; }; })): Promise; //# sourceMappingURL=packPackage.d.ts.map