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