import React from 'react'; export interface AvatarProps { /** * 子元素 */ children?: React.ReactNode; /** * 是否为密集模式 */ dense?: boolean; /** * 头像背景色 */ color?: string; /** * 添加自定义类名 */ className?: string; } /** * 头像组件 */ declare const Avatar: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, { color: string; className: string; } & AvatarProps, "className" | "color">; export default Avatar;