import React, { ReactNode } from 'react'; import { CSS } from '../theme/stitches.config'; import { AvatarGroupVariants } from './avatar-group.styles'; interface Props { count?: number; children?: ReactNode; as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit, keyof Props>; export declare type AvatarGroupProps = Props & NativeAttrs & AvatarGroupVariants & { css?: CSS; }; export declare const AvatarGroup: React.ForwardRefExoticComponent & { css?: CSS | undefined; } & React.RefAttributes>; export default AvatarGroup;