import { ComponentProps } from "react"; import { InternalProps, OmitInternalProps, SlotProps, StyledComponentProps } from "../../shared"; import { ResponsiveProp } from "../../styling"; declare const DefaultElement = "div"; export interface InnerAvatarProps extends SlotProps, InternalProps, StyledComponentProps { /** * The name of the person in the avatar. */ name: string; /** * The allowed number of retry to load a remote image. */ retryCount?: number; /** * An avatar can vary in size. */ size?: ResponsiveProp<"2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl">; /** * The url of a remote image or an image object. */ src?: string; } export declare function AvatarText(props: any): JSX.Element; export declare function InnerAvatar({ "aria-label": ariaLabel, as, forwardedRef, name, retryCount, size, src, ...rest }: InnerAvatarProps): JSX.Element; export declare namespace InnerAvatar { var defaultElement: string; } /** * An avatar is a graphical representation of a user and typically appears in list and card views, along side a user's information and/or content that they have created * * [Documentation](https://orbit.sharegate.design/?path=/docs/avatar--default-story) */ export declare const Avatar: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type AvatarProps = ComponentProps; export {};