import React from "react"; import { type IGatsbyImageData } from "gatsby-plugin-image"; import { Avatar as ChakraAvatar } from "./ChakraAvatar"; export declare const Avatar: ({ image, alt, title, loading, ...props }: { image?: Partial | undefined; alt?: string | undefined; title?: string | undefined; loading?: "eager" | "lazy" | undefined; style?: React.CSSProperties | undefined; } & Omit & React.RefAttributes) => JSX.Element;