import type { FocusEvent, ChangeEvent, HTMLInputTypeAttribute } from 'react';
interface Props {
type: HTMLInputTypeAttribute;
name: string;
value: string | number;
disabled?: boolean;
placeholder?: string;
autoComplete?: 'on' | 'off';
onBlur?: (e: FocusEvent) => void;
onChange?: (e: ChangeEvent) => void;
}
declare const Input: ({ type, name, value, placeholder, autoComplete, onBlur, onChange, disabled, }: Props) => import("react/jsx-runtime").JSX.Element;
export default Input;