import * as React from "react"; import { Responsive } from "./utils"; export interface TextInputProps extends Responsive { noLayout?: boolean; disabled?: boolean; placeholder?: string; id?: string; icon?: React.ReactNode; label?: React.ReactNode; defaultValue?: string; value?: string; validate?: boolean; success?: string; error?: string; inputClassName?: string; type?: string; onChange?: (e: React.ChangeEvent) => void; password?: boolean; email?: boolean; children?: React.ReactNode; name?: string; ref?: React.RefObject; } /** * React Materialize: TextInput */ declare const TextInput: React.FC; export default TextInput;