import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { b as FocusEventHandler, C as ChangeEventHandler } from '../types-B4RnVKcG.js'; import { BoxProps } from './Box.js'; declare const RadioGroup = "ax-radio-group"; type RadioGroupProps = BoxProps & { "defaultValue"?: string; "default-value"?: string; "disabled"?: false | true; "name"?: string; "onBlur"?: FocusEventHandler; "onChange"?: ChangeEventHandler; "onValueChange"?: (value: string) => void; "value"?: string; "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [RadioGroup]: RadioGroupProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof RadioGroupProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [RadioGroup]: RadioGroupProps & Omit<(ComponentPropsWithoutRef<"div">), keyof RadioGroupProps>; } } } export { RadioGroup }; export type { RadioGroupProps };