import { SmrtObjectOptions, SmrtObject } from '@happyvertical/smrt-core'; export interface ContentReferenceOptions extends SmrtObjectOptions { sourceId?: string; targetId?: string; tenantId?: string | null; targetVersion?: number | null; createdAt?: Date; } export declare class ContentReference extends SmrtObject { tenantId: string | null; sourceId: string; targetId: string; targetVersion: number | null; createdAt: Date; constructor(options?: ContentReferenceOptions); } //# sourceMappingURL=content-reference.d.ts.map