import type { PackageInfo } from '../types/PackageInfo'; import { type NpmResult } from './npm'; import type { BeachballOptions } from '../types/BeachballOptions'; import type { NpmOptions } from '../types/NpmOptions'; /** * Attempt to publish the package with retries. Returns the result of the final npm publish call * (mainly for tests; the real code just checks `result.success`). */ export declare function packagePublish(packageInfo: PackageInfo, options: NpmOptions & Pick): Promise; //# sourceMappingURL=packagePublish.d.ts.map