import React from "react";
export interface InputProps {
    type?: "text" | "password";
    isClean?: boolean;
    disabled?: boolean;
    placeholder?: string;
    style?: React.CSSProperties;
    onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
}
export declare function Input({ type, disabled, isClean, placeholder, style, onChange, ...props }: InputProps): JSX.Element;
