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;