import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const AvatarGroup = "ax-avatar-group"; type AvatarGroupProps = BoxProps & { "size"?: "xs" | "sm" | "md" | "lg" | "xl" | "3xl" | "2xs"; "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [AvatarGroup]: AvatarGroupProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof AvatarGroupProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [AvatarGroup]: AvatarGroupProps & Omit<(ComponentPropsWithoutRef<"div">), keyof AvatarGroupProps>; } } } export { AvatarGroup }; export type { AvatarGroupProps };