interface InputProps {
    name: string;
    type?: "text" | "number" | "date";
    placeholder?: string;
    label?: string;
    disabled?: boolean;
    defaultValue?: string;
}
declare const Input: React.FC<InputProps>;
export default Input;
