/** * Role of a relation. */ export declare enum RelationRole { /** * Parent. */ Parent = 0, /** * Child. */ Child = 1 } export type RelationRoleType = "Parent" | "Child";