/** @jsx jsx */ import { FC } from 'react'; import { BoxProps } from 'theme-ui'; import { GithubAvatarProps } from '../GithubAvatar'; export interface GithubAvatarUser { username: string; useremail?: string; } export interface GithubAvatarListOwnProps { /** * list of github user names */ users: GithubAvatarUser[]; /** * max number of avatars, then use a '...' */ maxItems?: number; } export declare type GithubAvatarListProps = GithubAvatarListOwnProps & Omit & BoxProps; /** * Avatar list that links to github profiles using rest api */ export declare const GithubAvatarList: FC;