import { SmrtCollection } from '@happyvertical/smrt-core'; import { ContentReviewKind, ContentReviewResult } from './content-governance'; import { ContentReview } from './content-review'; export declare class ContentReviewCollection extends SmrtCollection { static readonly _itemClass: typeof ContentReview; listForContent(contentId: string, kind?: ContentReviewKind): Promise; getLatestForContent(contentId: string, kind?: ContentReviewKind): Promise; listForContentByPolicyKey(contentId: string, policyKey: string): Promise; getLatestForPolicyKey(contentId: string, policyKey: string): Promise; createFromResult(options: { contentId: string; contentVersionId?: string | null; kind: ContentReviewKind; policyKey: string; reviewer?: string; result: ContentReviewResult; metadata?: Record; tenantId?: string | null; }): Promise; } //# sourceMappingURL=content-reviews.d.ts.map