/** * `scai content version inspect` — print the publish-state fields for * an item version. Read-only; does NOT write the audit log (the * audit log records mutations, not reads — keep the trail focused). * * The output groups the three Sitecore publish-state fields * (`__Never publish`, `__Valid from`, `__Valid to`) up top, then dumps * the rest of the version's fields for context. JSON mode emits the * raw snapshot so it can pipe into jq. */ import { type CommonContentVersionOptions } from "./shared.js"; export type RunContentVersionGetOptions = CommonContentVersionOptions; export declare const runContentVersionGet: (options: RunContentVersionGetOptions) => Promise;