import React from "react"; interface InputProps { name: string; type?: string; value: string; label?: string; placeholder?: string; onChange: (e: React.ChangeEvent) => void; error?: string; } export declare const Input: React.FC; export {};