import { SmrtCollection } from '@happyvertical/smrt-core'; import { Content } from './content'; import { CreateContentVersionOptions } from './content-governance'; import { ContentVersion } from './content-version'; export declare class ContentVersionCollection extends SmrtCollection { static readonly _itemClass: typeof ContentVersion; private buildSnapshotFactRelationships; listForContent(contentId: string): Promise; getLatestForContent(contentId: string): Promise; getLatestPublishedForContent(contentId: string): Promise; getVersion(contentId: string, versionNumber: number): Promise; getNextVersionNumber(contentId: string): Promise; createSnapshot(content: Content, options?: CreateContentVersionOptions): Promise; restoreIntoContent(content: Content, versionNumber: number): Promise; } //# sourceMappingURL=content-versions.d.ts.map