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