export interface Entity {
    id?: string;
    name: string;
    entityType: string;
    observations?: string[];
    properties?: Record<string, any>;
}
export interface Relation {
    id?: string;
    from: string;
    to: string;
    relationType: string;
    properties?: Record<string, any>;
}
//# sourceMappingURL=graph-model.d.ts.map