import { BgentRuntime } from "./runtime"; import { type Actor, type Memory, type UUID } from "./types"; /** * Get details for a list of actors. */ export declare function getActorDetails({ runtime, room_id, }: { runtime: BgentRuntime; room_id: UUID; }): Promise; /** * Format actors into a string * @param actors - list of actors * @returns string */ export declare function formatActors({ actors }: { actors: Actor[]; }): string; /** * Format messages into a string * @param messages - list of messages * @param actors - list of actors * @returns string */ export declare const formatMessages: ({ messages, actors, }: { messages: Memory[]; actors: Actor[]; }) => string;