import { FC } from 'react'; import { InputType, IFormElement } from '../../types'; export interface IInputProps extends IFormElement { type?: InputType | 'date'; handleChange: (name: string, value: string | number) => void; placeholder?: string; min?: number; max?: number; step?: number; autoFocus?: boolean; theme?: any; handleSubmit?: () => void; prefix?: string; handleFieldFocus?: (name: string) => void; handleFieldBlur?: () => void; } export declare const Input: FC;