/** * @license * Copyright 2024 Nuraly, Laabidi Aymen * SPDX-License-Identifier: MIT */ import { nothing } from 'lit'; import type { CollaborationUser } from '../interfaces/collaboration.interface.js'; export interface PresenceBarTemplateData { users: CollaborationUser[]; connected: boolean; onUserClick?: (userId: string) => void; } /** * Renders a presence bar showing connected users as colored avatar * circles with initials, positioned in the top-right of the canvas. */ export declare function renderPresenceBarTemplate(data: PresenceBarTemplateData): typeof nothing | import("lit-html").TemplateResult<1>; //# sourceMappingURL=presence-bar.template.d.ts.map