import React from 'react'; import JSON from '../Input.Json'; import Password from '../Input.Password'; import TextArea from '../Input.TextArea'; import Url from '../Input.Url'; import Email from '../Input.Email'; import Phone from '../Input.Phone'; import Mobile from '../Input.Mobile'; import Subdomain from '../Input.Subdomain'; import { InputProps } from './type'; declare type InputComponent = React.FC & { JSON: typeof JSON; Password: typeof Password; TextArea: typeof TextArea; URL: typeof Url; Email: typeof Email; Phone: typeof Phone; Mobile: typeof Mobile; Subdomain: typeof Subdomain; }; declare const Input: InputComponent; export default Input;