import { App } from "../../../App"; import { PresenceUser } from "microboard-temp"; import React from "react"; export interface User { id: string; name: string; color: string; avatar: string | null; idle: boolean; } interface Props { app: App; } export declare const FollowingUsersCount: React.FC<{ followers: PresenceUser[]; }>; export declare const PresenceUsers: React.FC; export {};