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