import React from 'react'; import AvatarItem, { AvatarItemProps, SizeType } from './AvatarItem'; export interface AvatarListProps { Item?: React.ReactElement; size?: SizeType; maxLength?: number; excessItemsStyle?: React.CSSProperties; style?: React.CSSProperties; children: React.ReactElement | Array>; } export default class AvatarList extends React.Component { public static Item: typeof AvatarItem; }