import React from "react"; export interface AvatarItemProps { tips: string | React.ReactNode; src: string; } export interface AvatarListProps { size?: "large" | "small" | "mini" | "default"; children: | React.ReactElement | Array>; } declare class AvatarItem extends React.Component { constructor(props: AvatarItemProps); } export default class AvatarList extends React.Component { constructor(props: AvatarListProps); static Item: typeof AvatarItem; }