UNPKG

321 BTypeScriptView Raw
1import InternalAvatar from './avatar';
2import Group from './group';
3export type { AvatarProps } from './avatar';
4export type { GroupProps } from './group';
5export { Group };
6type CompoundedComponent = typeof InternalAvatar & {
7 Group: typeof Group;
8};
9declare const Avatar: CompoundedComponent;
10export default Avatar;