import React from 'react'; import { InputTypes } from '../utils/prop-types'; export interface InputProps { type?: InputTypes; placeholder?: any; hintTxt?: string; value?: any; onChange?: any; className?: string; prefixIcon?: React.ReactNode; suffixIcon?: React.ReactNode; label?: React.ReactNode; htmlFor?: string; name?: string; error?: boolean; errorMessage?: React.ReactNode; w?: string; inline?: boolean; radioBox?: boolean; passwordtoggle?: boolean; inverse?: boolean; whitetheme?: boolean; radioBoxCircular?: boolean; trailing?: React.ReactNode; leading?: React.ReactNode; iconBg?: string; cols?: any; rows?: any; } declare const defaultProps: { placeholder: string; }; declare type NativeAttrs = Omit, keyof InputProps>; export declare type GInputProps = InputProps & typeof defaultProps & NativeAttrs; declare const _default: React.ForwardRefExoticComponent & Omit & NativeAttrs & React.RefAttributes>; export default _default;