import { JSX } from 'react'; import { MessageStyleProps } from './message'; export interface InputFieldProps extends React.InputHTMLAttributes, MessageStyleProps { header: string; helperMessage?: React.ReactNode | string; messageTestId?: string; dataTestid?: string; className?: string; } export declare const InputField: ({ header: title, helperMessage, messageTestId, className, dataTestid, id, ...props }: InputFieldProps) => JSX.Element; //# sourceMappingURL=input-field.d.ts.map