import React from 'react'; import { ComponentProps } from '../../lib'; export interface InputProps extends ComponentProps, React.InputHTMLAttributes { icon?: boolean; } export declare const Input: React.MemoExoticComponent<({ className, icon, ...props }: InputProps) => JSX.Element>;