/** * Manage the Gravatar associated to given e-mail. */ export default class Gravatar { private md5Hash; constructor(email: string); getImageUrl(size: number, notExist?: 'mp' | 'identicon'): string; getProfileUrl(): string; }