1 | import * as React from 'react';
|
2 | import type { AvatarSize } from './SizeContext';
|
3 | export interface GroupProps {
|
4 | className?: string;
|
5 | children?: React.ReactNode;
|
6 | style?: React.CSSProperties;
|
7 | prefixCls?: string;
|
8 | maxCount?: number;
|
9 | maxStyle?: React.CSSProperties;
|
10 | maxPopoverPlacement?: 'top' | 'bottom';
|
11 | maxPopoverTrigger?: 'hover' | 'focus' | 'click';
|
12 | size?: AvatarSize;
|
13 | }
|
14 | declare const Group: React.FC<GroupProps>;
|
15 | export default Group;
|