import { DetailedHTMLProps, InputHTMLAttributes } from "react"; interface Input extends DetailedHTMLProps, HTMLInputElement> { label: string; register?: any; hidden?: boolean; withAI?: boolean; } declare function Input({ type, label, register, name, id, value, defaultValue, hidden, withAI, ...props }: Input): JSX.Element; export default Input;