import * as React from 'react'; export interface IInputFieldProps { id: string; label?: string; className?: string; helperText?: string; tooltip?: string; description?: string; required?: boolean; disabled?: boolean; maxLength?: number; touched: boolean; error?: string; prefix?: string | JSX.Element; postfix?: string | JSX.Element; unit?: string | JSX.Element; optionalLabel?: string; children: React.ReactNode; hideAsterisk?: boolean; hideErrorLabel?: boolean; hideInputHeader?: boolean; } export declare const InputField: (props: IInputFieldProps) => React.JSX.Element; //# sourceMappingURL=InputField.d.ts.map