import * as _nature_ui_system_dist_system_types from '@nature-ui/system/dist/system.types';
import { PropsOf, nature } from '@nature-ui/system';
import React from 'react';

interface AvatarGroupOptions {
    children: React.ReactNode;
    max?: number;
    spacing?: string | number;
    size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
}
type AvatarGroupProps = AvatarGroupOptions & PropsOf<typeof nature.div>;
declare const AvatarGroup: _nature_ui_system_dist_system_types.ComponentWithAs<"div", AvatarGroupProps>;

export { AvatarGroup, AvatarGroupProps };
