import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const Field = "ax-field"; type FieldProps = BoxProps & { "required"?: false | true; "info"?: string | number | false | true; "inputId"?: string; "input-id"?: string; "labelId"?: string; "label-id"?: string; "description"?: string | number | false | true; "error"?: string | number | false | true; "label"?: string | number | false | true; "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [Field]: FieldProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof FieldProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [Field]: FieldProps & Omit<(ComponentPropsWithoutRef<"div">), keyof FieldProps>; } } } export { Field }; export type { FieldProps };