import React, { ReactNode } from "react"; import "./Input.scss"; declare type InputProps = { children?: ReactNode; inputLabel?: string; inputValue?: string; inputType?: string; inputProps?: object; }; declare const Input: React.SFC; export default Input;