PromoCursed/node_modules/antd/lib/avatar/index.d.ts
2024-08-20 23:25:37 +04:00

11 lines
321 B
TypeScript

import InternalAvatar from './avatar';
import Group from './group';
export type { AvatarProps } from './avatar';
export type { GroupProps } from './group';
export { Group };
type CompoundedComponent = typeof InternalAvatar & {
Group: typeof Group;
};
declare const Avatar: CompoundedComponent;
export default Avatar;