import React from 'react'; import './style/index.less'; export interface IUserInfo { /** * 工作台ID */ accountId?: React.Key; /** * 工号 */ workNo?: React.Key | null; /** * 头像 */ avatar?: string; /** * 姓名 */ name: string; /** * 是否可操作 */ disabled?: boolean; } export interface AvatarListProps { title?: string; className?: string; showAvatar?: boolean; data: IUserInfo | IUserInfo[]; } export declare const AvatarList: (props: AvatarListProps) => JSX.Element;