import { default as React } from 'react'; export type AvatarSize = 'none' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge' | 'xxxlarge'; export interface AvatarProps { url?: string | undefined | null; size?: AvatarSize; placeholder?: string; className?: string; rounded?: boolean; arialLabel?: string; ref?: React.Ref; } export declare function Avatar(props: AvatarProps): import("react/jsx-runtime").JSX.Element;