import 'rollup-plugin-inject-process-env'; import { FC } from "react"; import { FormFieldTextAddressInput } from "stentor-models"; import { FormTextInputProps } from "../FormFieldTextInput/FormFieldTextInput"; export interface FormFieldTextInputAddressProps extends FormTextInputProps, Pick { readonly field: FormFieldTextAddressInput; /** * When true, the user must select an address from the autocomplete suggestions. * Free-text entry is not allowed. * * Can also be set via `field.requireSelection` (field-level takes precedence). * @see https://github.com/stentorium/stentor/issues/3040 */ readonly requireSelection?: boolean; } export declare const FormFieldTextInputAddress: FC;