import { type BgentRuntime } from "./runtime"; import { type Relationship, type UUID } from "./types"; export declare function createRelationship({ runtime, userA, userB, }: { runtime: BgentRuntime; userA: UUID; userB: UUID; }): Promise; export declare function getRelationship({ runtime, userA, userB, }: { runtime: BgentRuntime; userA: UUID; userB: UUID; }): Promise; export declare function getRelationships({ runtime, user_id, }: { runtime: BgentRuntime; user_id: UUID; }): Promise; export declare function formatRelationships({ runtime, user_id, }: { runtime: BgentRuntime; user_id: UUID; }): Promise<`${string}-${string}-${string}-${string}-${string}`[]>;