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