/// import { TextFieldProps } from "@material-ui/core"; import { FormContextType, FormFieldError } from "../../types/common-form-components-types"; export declare type TextInputProps = FormContextType & FormFieldError & { label: string; helperText?: string; placeholder?: string; type?: string; muiProps?: TextFieldProps; }; export declare const TextInput: (props: TextInputProps) => JSX.Element;