import type { ThemeBaseSize } from "../theme.types"; export interface AvatarProps { /** 头像的url */ src?: string; size?: ThemeBaseSize; /** * 方形或圆形变体 * @default circle */ variant?: "square" | "circle"; className?: string; online?: boolean; /** 只显示一些字符, src属性的优先级比placeholder属性高. 不建议超过两个字符 */ placeholder?: string; mask?: "squircle" | "heart" | "star" | "triangle" | "diamond" | "pentagon" | "hexagon" | "hexagon2" | "decagon"; slots?: { wrapper?: string; }; } export declare function Avatar(props: AvatarProps): import("react").JSX.Element;