minishouyin/node_modules/antd/es/avatar/index.d.ts
2025-11-12 11:35:57 +08:00

12 lines
425 B
TypeScript

import InternalAvatar from './Avatar';
import type { AvatarGroupProps } from './AvatarGroup';
import AvatarGroup from './AvatarGroup';
export type { AvatarProps } from './Avatar';
/** @deprecated Please use `AvatarGroupProps` */
export type GroupProps = AvatarGroupProps;
type CompoundedComponent = typeof InternalAvatar & {
Group: typeof AvatarGroup;
};
declare const Avatar: CompoundedComponent;
export default Avatar;