/// <reference types="react" />
export interface AvatarGroupProps {
    /**
     * The avatars to stack.
     */
    children?: React.ReactNode;
    /**
     * Max avatars to show before +x.
     */
    max?: number;
}
