import type { Argv } from "yargs"; import { type ModulePayload } from "../bundle/module-payload.js"; import { type Logger } from "../logger.js"; import type { BumpLevel } from "../publishers/interface.js"; export { expandAndInlineIncludes, readAssetPatterns, readFilesPatterns, } from "../bundle/manifest-text.js"; /** Exported under a test-only name because the check is publish-internal but * its regression — a comparison that silently never ran — is only observable * through it. */ export declare const verifyImportPinsForTest: typeof verifyImportPins; declare function verifyImportPins(payload: ModulePayload, registry: string, log: Logger): Promise; export declare function publish(argv: { paths: string[]; registry: string; bump?: BumpLevel; dryRun: boolean; skipControllers: boolean; }): Promise; export declare function publishCommand(yargs: Argv): Argv; //# sourceMappingURL=publish.d.ts.map