/** * `scai content version set-never-publish` — set or clear the * `__Never publish` flag on a specific item version. * * Pure CM mutation — DOES NOT auto-publish. After flipping the flag, * operators run `scai content publish item` (or `scai content publish unpublish`) * separately. Letting these two steps stay independent means an * operator can batch several `set-*` changes before paying for the * publish round trip. */ import { type CommonContentVersionOptions } from "./shared.js"; export interface RunContentVersionSetNeverPublishOptions extends CommonContentVersionOptions { /** Target value for `__Never publish`. Required. */ value: boolean; } export declare const runContentVersionSetNeverPublish: (options: RunContentVersionSetNeverPublishOptions) => Promise;