import { type ElementType } from 'react'; import type { InputProps } from './types'; /** * Input root component that provides visual-input state context for compound * children (InputField, InputContainer, Prefix, Suffix, etc.). * * When nested inside a ``, it reads the Field's `invalid`, `disabled`, * `required` and `readOnly` values automatically. Direct props on `` * override the inherited values. */ export declare const Input: { ({ as, id: providedId, invalid, disabled, required, readOnly, children, ref, ...props }: InputProps): import("react/jsx-runtime").JSX.Element; displayName: string; };