import * as React from 'react'; export interface InputElementProps { children: React.ReactElement; } export interface InputElementRef { focus: () => void; blur: () => void; } declare const InputElement: React.ForwardRefExoticComponent>; export default InputElement;