type ActorKind = "user" | "agent" | "system"; interface ActorRef { actorId: string; kind: ActorKind; instanceId: string | null; displayName: string; } interface GroupXEnvelope { schema: string; eventId: string; seq: number | null; roomId: string; type: string; actor: ActorRef; to: string[]; replyToEventId: string | null; causationId: string | null; correlationId: string; occurredAt: string; durability: "durable" | "transient"; body: unknown; } /** Render one tool call inside its Agent conversation bubble, collapsed by default. */ export declare function renderToolProgress(envelope: GroupXEnvelope): void; export {}; //# sourceMappingURL=app.d.ts.map