import React from 'react'; interface UserDisplayProps { name: string; avatarUrl?: string | null; /** optional secondary text (e.g., relative timestamp) */ subtitle?: string | null; /** Avatar size in px (defaults 32) */ size?: number; /** Avatar corner treatment, forwarded to SquareAvatar. Default 'square'. */ shape?: 'square' | 'round'; /** Compact typography (14px/20px rows — video-bite overlay density). */ compact?: boolean; className?: string; } /** * Reusable horizontal avatar + name (+ optional subtitle) row that follows * the visual pattern used in CommentCard headers. */ export declare function UserDisplay({ name, avatarUrl, subtitle, size, shape, compact, className }: UserDisplayProps): React.JSX.Element; export {}; //# sourceMappingURL=user-display.d.ts.map