/** * Represents chat notification. */ declare class ChatNotification { id: string; userId: string; title: string; message: string; constructor(id: string, userId: string, title: string, message: string); } export default ChatNotification; //# sourceMappingURL=ChatNotification.d.ts.map