import { type ElementType } from 'react'; import type { InputFieldProps } from './types'; /** * Input field component that renders the core input element with full accessibility support. * Supports polymorphic rendering for input and textarea elements. */ export declare const InputField: { ({ as, ref, autoFocus, onFocus, onBlur, onChange, mask, value, defaultValue, onValueChange, ...props }: InputFieldProps): import("react/jsx-runtime").JSX.Element; displayName: string; };