11 lines
321 B
TypeScript
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;
|