import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const InputControl = "ax-input-control"; type InputControlProps = BoxProps & { "size"?: "md" | "lg" | "xl"; "disabled"?: false | true; "placeholder"?: string; "onValueChange"?: (value: string) => void; "name"?: string; "error"?: false | true; "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [InputControl]: InputControlProps & Omit<(JSXBase.IntrinsicElements["input"] | JSXBase.IntrinsicElements["textarea"]), keyof InputControlProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [InputControl]: InputControlProps & Omit<(ComponentPropsWithoutRef<"input"> | ComponentPropsWithoutRef<"textarea">), keyof InputControlProps>; } } } export { InputControl }; export type { InputControlProps };