import React from 'react'; import { type AvatarProps as AntdAvatarProps } from 'antd'; import type { IconBaseProps } from '../../icons'; export type AvatarProps = AntdAvatarProps & { /** * icon 为 React 节点,会自动设置 width 和 height 为 1em */ icon?: React.ReactElement; }; export declare const Avatar: React.FC;