import { SmrtObjectOptions, SmrtObject } from '@happyvertical/smrt-core'; import { ContentCorrectionStatus, ContentCorrectionType } from './content-governance'; export interface ContentCorrectionOptions extends SmrtObjectOptions { contentId?: string; contentVersionId?: string; factId?: string; replacementFactId?: string; correctionType?: ContentCorrectionType; status?: ContentCorrectionStatus; summary?: string; incorrectText?: string; correctedText?: string; publicNote?: string; metadata?: string | Record; tenantId?: string | null; publishedAt?: Date | null; createdAt?: Date; updatedAt?: Date; } export declare class ContentCorrection extends SmrtObject { contentId: string; contentVersionId: string; factId: string; replacementFactId: string; correctionType: ContentCorrectionType; status: ContentCorrectionStatus; summary: string; incorrectText: string; correctedText: string; publicNote: string; metadata: string; tenantId: string | null; publishedAt: Date | null; createdAt: Date; updatedAt: Date; constructor(options?: ContentCorrectionOptions); getMetadata(): Record; } //# sourceMappingURL=content-correction.d.ts.map