import { default as React } from 'react'; interface IntputWrapperProps { info?: string; hint?: string; children: any; error?: any; } declare const InputWrapper: React.FC; export default InputWrapper;