import React from 'react'; declare type Props = { offlineImage?: string; email: string; } & Partial; declare type DefaultProps = { circle: boolean; offline: boolean; protocol: string; size: number; }; export default class Gravatar extends React.PureComponent { static displayName: string; static defaultProps: DefaultProps; render(): JSX.Element; } export {};