export class GroupHelper {
    /**
     * Create and attach a ChatLog to the UserGroup object.
     * @param {UserGroup} group
     * @param {*} scene
     * @param {boolean} stackVertical
     * @param {boolean} stackHorizontal
     */
    static attachChatlog(group: UserGroup, scene: any, stackVertical: boolean, stackHorizontal: boolean): void;
    /**
     * Show unread messages of a group in group chatlog.
     * @param {UserGroup} group
     */
    static showUnread(group: UserGroup): void;
}
import { UserGroup } from '../../client/openapi/model/UserGroup.js';
