import React, { InputHTMLAttributes, ReactNode } from "react";
interface Props extends InputHTMLAttributes {
id?: string;
label?: string;
toolTip?: string;
error?: string;
fullWidth?: boolean;
icon?: ReactNode;
}
declare const _default: React.ForwardRefExoticComponent>;
export default _default;