import * as react_jsx_runtime from 'react/jsx-runtime'; interface PersonIdentityCellProps { name: string; email?: string | null; initials: string; avatarClassName?: string; /** When set, email renders as a mailto link (row click should stopPropagation on the anchor). */ emailHref?: string; className?: string; } /** * Table / list person column — avatar + name + optional email. * Email uses `text-sm` (same scale as table body) with muted color so secondary * lines never render below the 12px `--text-xs` floor. */ declare function PersonIdentityCell({ name, email, initials, avatarClassName, emailHref, className, }: PersonIdentityCellProps): react_jsx_runtime.JSX.Element; export { PersonIdentityCell, type PersonIdentityCellProps };