import 'rollup-plugin-inject-process-env'; import { FC } from "react"; import { FormTextInput } from "stentor-models"; import { Styleable } from "../../types"; import { FormFieldProps } from "../FormDisplay"; export interface FormTextInputProps extends FormFieldProps { readonly field: Styleable; readonly value?: string | undefined; /** * When this is the last field of the step the keyboard shows "done" rather than "next". */ readonly isLastField?: boolean; } export declare const FormFieldTextInput: FC; export default FormFieldTextInput;