/** @jsx jsx */ import { FC, ReactNode } from 'react'; export interface GithubAvatarProps { /** * user name */ username: string; /** * optional user email to link to gravatar */ useremail?: string; /** * on hover profile box */ tooltip?: ReactNode; /** * overlap % of the avatars in a list */ overlap?: number; /** * size in pixels */ size?: number; /** * whether to fix the size of the avataro on hover */ fixedSize?: boolean; /** * to increase access rate for github user profile info */ githubAccessToken?: string; } /** * avatar to be used in an AvatarList container */ export declare const GithubAvatar: FC;