import React from "react"; export interface Props { value?: string; placeholder?: string; password?: boolean; onChange?: React.ChangeEventHandler; paramName?: string; isRequired?: boolean; label?: string; type?: string; required?: boolean; } declare function FormTextInput({ isRequired, value, placeholder, password, onChange, paramName, label, type, required, }: Props): React.JSX.Element; export default FormTextInput;