export type AvatarProps = { src?: string; text?: string; className?: string; }; /** An image element with a fallback for representing the user. * * Built using Radix Avatar, styled for Stellar. Refer to the Radix docs for complete documentation of available properties aside from the ones * added by this wrapper component. * * Figma Docs TODO * [Radix Docs](https://www.radix-ui.com/docs/primitives/components/avatar) */ export declare const Avatar: (props: AvatarProps) => import("react/jsx-runtime").JSX.Element;