import type { InputHTMLAttributes } from 'react'; import React from 'react'; interface InputFieldProps extends InputHTMLAttributes { id?: string; hasError?: boolean; } export declare const Input: React.ForwardRefExoticComponent>; export {};