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