UNPKG

448 BTypeScriptView Raw
1import type { ForwardRefExoticComponent, RefAttributes } from 'react';
2import type { AvatarProps } from './avatar';
3import Group from './group';
4export type { AvatarProps } from './avatar';
5export type { GroupProps } from './group';
6export { Group };
7type CompoundedComponent = ForwardRefExoticComponent<AvatarProps & RefAttributes<HTMLSpanElement>> & {
8 Group: typeof Group;
9};
10declare const Avatar: CompoundedComponent;
11export default Avatar;