import * as React from 'react'; import { PropsWithChildren } from 'react'; export declare type InputFieldType = 'text' | 'password' | 'email' | 'number'; export interface IInputFieldProps { onChange: (value: string) => void; type?: InputFieldType; value?: string; disabled?: boolean; placeholder?: string; hasError?: boolean; } export declare const InputField: React.FC & React.HTMLProps>;