import React from "react";
interface InputProps {
    placeholder: string;
}
declare const Input: React.FC<InputProps>;
export default Input;
