export interface Relationship { id: string; type: string; target: string; mode?: string; } export type RelationshipMap = Record; export declare const AddRel: (map: RelationshipMap, type: string, target: string, mode?: string) => string;