/// import * as React from 'react'; export interface Props extends React.HTMLProps { validators?: ((value: any, fieldValues: any) => any)[]; } export declare const Input: ({validators, ...props}: Props) => JSX.Element; export default Input;