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