import React from 'react'; import { RegisterOptions, FieldPath, FieldValues } from 'react-hook-form'; interface InputFieldProps extends Omit, 'name'> { name: FieldPath; label?: string; error?: string; helperText?: string; required?: boolean; validation?: RegisterOptions; wrapperClassName?: string; prefixIcon?: React.ReactNode; suffixIcon?: React.ReactNode; } export declare function InputField({ name, label, error, helperText, required, validation, wrapperClassName, className, type, prefixIcon, suffixIcon, defaultValue, ...props }: InputFieldProps): React.JSX.Element; export {};