/** * UserCard - Compact user information display * refactored for Material 3 */ import type { Profile } from '@happyvertical/smrt-profiles'; import type { User } from '@happyvertical/smrt-users'; export interface Props { user: User; profile: Profile; role?: string; status?: string; onclick?: () => void; selected?: boolean; } declare const UserCard: import("svelte").Component; type UserCard = ReturnType; export default UserCard; //# sourceMappingURL=UserCard.svelte.d.ts.map