import React from 'react'; export interface InputProps extends React.InputHTMLAttributes { inputRef?: React.Ref; } export declare function Input(props: InputProps): JSX.Element; export declare namespace Input { var defaultProps: Partial; }