/// declare type InputProps = { name: string; disabled?: boolean; value: string | number | null; label?: string; type?: string; placeholder?: string; onChange: (e?: any) => void; onBlur?: () => void; required?: boolean; }; export declare const Input: ({ name, label, onChange, value, onBlur, type, disabled, placeholder, required, }: InputProps) => JSX.Element; export {};