import { ChatHistoryEntry } from "./ChatHistoryEntry"; import { DomainUser } from "../../identity"; export declare class CreatedChatHistoryEntry extends ChatHistoryEntry { readonly name: string; readonly topic: string; readonly members: DomainUser[]; static readonly TYPE: string; }