import type { ComponentPropsWithoutRef } from 'react'; type InputProps = ComponentPropsWithoutRef<'input'>; declare function Input({ className, type, ...props }: InputProps): import("react/jsx-runtime").JSX.Element; export default Input; export type { InputProps };