import React from 'react'; import { THEME_NAME_MAP } from "./theme/themeMap"; export declare type CircleAvatarProps = { src?: string; theme?: typeof THEME_NAME_MAP.ARC | typeof THEME_NAME_MAP.CODEMENTOR; size?: number; alt?: string; title?: string; href?: string; lazy?: boolean; className?: string; hiddenWhenNotFound?: boolean; onError?: () => void; imgProps?: object; }; declare const _default: React.MemoExoticComponent<(props: CircleAvatarProps) => JSX.Element | null>; export default _default;