import type { Snippet } from 'svelte'; export type UserListItemStatus = 'online' | 'offline' | 'busy' | 'away'; interface UserListItemProps { name: string; description?: string; avatar?: string; status?: UserListItemStatus; badge?: string; meta?: string; selected?: boolean; disabled?: boolean; class?: string; trailing?: Snippet; onclick?: () => void; } declare const UserListItem: import("svelte").Component; type UserListItem = ReturnType; export default UserListItem;