import React__default, { InputHTMLAttributes } from 'react'; interface InputProps extends InputHTMLAttributes { } interface FormTextInputProps extends InputProps { id?: string; name: string; label?: string; inputProps?: InputProps; classNames?: { wrapper?: string; label?: string; input?: string; }; } declare function FormTextInput({ id, name, label, type, classNames, required, disabled, inputProps, ...rest }: FormTextInputProps): React__default.JSX.Element; export { FormTextInput, type FormTextInputProps };