export type PresenceStatus = 'online' | 'away' | 'busy' | 'offline'; export interface PresenceUser { id: string; name: string; avatar?: string; status?: PresenceStatus; } interface PresenceListProps { users?: PresenceUser[]; max?: number; class?: string; } declare const PresenceList: import("svelte").Component; type PresenceList = ReturnType; export default PresenceList;