export interface ContextRelationshipBase { /** The unique identifier for the relationship. */ id?: string | undefined; /** The type of relationship. */ type?: ContextRelationshipBase.Type | undefined; /** The field key used as the foreign key. */ foreign_key?: string | undefined; /** Display name for the relationship. */ name?: string | undefined; /** Description of the relationship. */ description?: string | undefined; /** When the relationship was created. */ created_at?: string | undefined; } export declare namespace ContextRelationshipBase { /** The type of relationship. */ const Type: { readonly HasMany: "has_many"; readonly HasOne: "has_one"; readonly BelongsTo: "belongs_to"; }; type Type = (typeof Type)[keyof typeof Type]; }