import type { TopicId } from './topic'; export type RelationshipId = string; export declare class Relationship { readonly id: RelationshipId; readonly title: string; readonly fromTopicId: TopicId; readonly toTopicId: TopicId; constructor(title: string, from: TopicId, to: TopicId); }