import React from "react"; interface Props { user: { id: string; name: string; color: string; avatar: string | null; idle: boolean; }; trackedUser: { userId: string; } | null; index: number; onClick: () => void; } export declare const PresenceUserAvatar: React.FC; export {};