import { default as React } from 'react'; export interface InputProps extends React.InputHTMLAttributes { /** Pass any Icon or Text as preffix */ prefix?: any; suffix?: any; containerStyle?: any; } declare const Input: React.ForwardRefExoticComponent>; export { Input };