import type { InputHTMLAttributes } from 'react';
import React from 'react';
export interface InputFieldProps extends InputHTMLAttributes {
label?: string;
type?: string;
id?: string;
errorMessage?: string;
labelLink?: {
text: string;
onClick: () => void;
};
}
export declare const InputField: React.ForwardRefExoticComponent>;
export default InputField;