import * as React from 'react'; export interface InputProps extends React.InputHTMLAttributes { } declare const Input: { ({ ref, className, type, ...props }: InputProps & { ref?: React.RefObject; }): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { Input };