import type * as Rulebricks from "../index.js"; export interface ContextRelationshipsResponse { /** The context these relationships belong to. */ context?: ContextRelationshipsResponse.Context | undefined; outgoing?: Rulebricks.ContextRelationshipOutgoing[] | undefined; incoming?: Rulebricks.ContextRelationshipIncoming[] | undefined; } export declare namespace ContextRelationshipsResponse { /** * The context these relationships belong to. */ interface Context { id?: string | undefined; name?: string | undefined; slug?: string | undefined; } }