import React from "react"; interface InputDefaltProps { label?: string | React.ReactNode; required?: boolean; placeholder?: string; onChange?: (value: string) => void; value?: string | Array | number; error?: string | null | boolean; disable?: boolean; name?: string; } declare const Input: ({ label, required, placeholder, value, onChange, error, disable, name, }: InputDefaltProps) => React.JSX.Element; export default Input;