import { default as React } from 'react'; export interface ListUserListItem { id: string; name: string; subtitle?: string; avatar?: React.ReactNode | string; badge?: string; badgeVariant?: 'success' | 'warning' | 'error' | 'info'; } export interface ListUserListProps { users: ListUserListItem[]; selectedUserId?: string; onUserClick?: (userId: string) => void; className?: string; } export declare const ListUserList: React.FC; //# sourceMappingURL=ListUserList.d.ts.map