import React from "react"; interface Props { /** * Place holder text */ placeHolder?: string; /** * CSS height for the input */ height?: string; /** * CSS width for the input */ width?: string; /** * On input change event listener */ onInput?: (value: string) => void; /** * Icon element */ icon?: JSX.Element | false; } export interface RefInstance { } declare const Input: React.ForwardRefExoticComponent>; export default Input;