import * as React from 'react'; import type { IUserProfile } from '../../apis/udt-types'; export interface IUserDisplayProps { /** * 支持传入完整的用户资料(IUserProfile)/ 列表(IUserProfile[]) * 或仅传入用户 ID(string)/ 列表(string[])。 * 当传入 user_id 或 user_id[] 时组件会自动拉取用户资料并渲染。 */ users: IUserProfile | IUserProfile[] | string | string[]; size?: 'small' | 'medium' | 'large'; className?: string; style?: React.CSSProperties; showLabel?: boolean; showUserProfile?: boolean; } export declare const UserDisplay: React.FC;