import React from "react"; import { ImageAvatarProps } from "./image-avatar"; import { TextAvatarProps } from "./text-avatar"; type AvatarProps = ImageAvatarProps | TextAvatarProps; declare function Avatar(props: AvatarProps): React.JSX.Element; export default Avatar;