import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const ListboxRadioItem = "ax-listbox-radio-item"; type ListboxRadioItemProps = BoxProps & { "asChild"?: false | true; "as-child"?: false | true; "addonAfter"?: string | number | false | true; "addon-after"?: string; "addonBefore"?: string | number | false | true; "addon-before"?: string; "icon"?: string | number | false | true; "intent"?: "danger" | "neutral"; "description"?: string | number | false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [ListboxRadioItem]: ListboxRadioItemProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof ListboxRadioItemProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [ListboxRadioItem]: ListboxRadioItemProps & Omit<(ComponentPropsWithoutRef<"div">), keyof ListboxRadioItemProps>; } } } export { ListboxRadioItem }; export type { ListboxRadioItemProps };