import { CSSProperties, PropsWithChildren } from 'react'; export interface AvatarProps extends PropsWithChildren { alt?: string; url?: string; className?: string; style?: CSSProperties; size?: "tiny" | "small" | "medium" | "large" | "xlarge"; variant?: "circular" | "rounded" | "square"; } export declare function Avatar({ className, style, size, variant, alt, url, children }: AvatarProps): import("react/jsx-runtime").JSX.Element;