/// import { Size } from '../Types'; interface IGravatarProps { /** @ignore */ className?: string; /** Email address to use for Gravatar. If not specified, shows default unknown user image. */ email?: string; /** * Gravatar image size. If not specified, uses `avatar`. * @default avatar */ size?: Size; /** onClick handler, if any. */ onClick?: () => void; } /** * A Gravatar shows a generated image based on an email address, as provided by the gravatar service. * * @example * * * @link https://henck.github.io/typeui/?path=/story/controls-gravatar--properties */ declare const Gravatar: (props: IGravatarProps) => JSX.Element; export { Gravatar };