import React from 'react'; export interface AvatarListProps { users?: Array<{ name?: string; color?: string; }>; style?: any; size?: number; } export declare const AvatarList: React.FC;