type InputProps = {
    title: string;
    value: string;
    onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
    name?: string;
    placeholder?: string;
};
declare const Input: ({ title, value, onChange, name, placeholder }: InputProps) => import("react/jsx-runtime").JSX.Element;
export default Input;
