easemob-chat-uikit
Version:
   ![GitHub last c
10 lines (9 loc) • 323 B
TypeScript
import type { AvatarProps } from './Avatar';
import type { ForwardRefExoticComponent } from 'react';
import Group from './Group';
type CompoundedComponent = ForwardRefExoticComponent<AvatarProps> & {
Group: typeof Group;
};
declare const Avatar: CompoundedComponent;
export default Avatar;
export type { AvatarProps };