import * as React from 'react'; declare type TInput = { props: { [key: string]: any; }; label: string; placeholder: string | undefined; defaultValue?: string | number | undefined; errors: {}; }; declare const Input: React.FC; export default Input;