import { default as React } from 'react';
export interface InputProps {
    type?: "text" | "email" | "tel" | "password";
    placeholder?: string;
    value: string;
    onChange: (value: string) => void;
    icon?: "email" | "avatar" | "chatbot" | "send" | "close" | "name" | "emailForm" | "error" | "tick";
    error?: string;
    className?: string;
    disabled?: boolean;
    required?: boolean;
    isValid?: boolean;
}
declare const Input: React.FC<InputProps>;
export default Input;
