import { Avatar as InnerAvatar } from './avatar'; import { AvatarGroup } from './avatar-group'; export type { AvatarProps } from './avatar'; export type { AvatarGroupProps } from './avatar-group'; type CompoundedComponent = typeof InnerAvatar & { Group: typeof AvatarGroup; }; export declare const Avatar: CompoundedComponent;