import React from 'react'; import type { TdAvatarGroupProps } from './type'; import type { StyledProps } from '../common'; export interface AvatarGroupProps extends TdAvatarGroupProps, StyledProps { children?: React.ReactNode; } declare const AvatarGroup: { (props: AvatarGroupProps): React.JSX.Element; displayName: string; }; export default AvatarGroup;