import type { ReactNode } from 'react'; interface UserDisplayProps { id?: string; name?: string; email?: string; role?: string; avatarUrl?: string; } export declare function UserDisplay({ name, email, role, avatarUrl }: UserDisplayProps): ReactNode; export {};