import React from 'react'; import { InputFieldProps } from '../internal/input-field'; type InputPhoneBaseProps = { flagTestID?: string; initialValue?: string; searchPlaceholder: string; }; export type InputPhoneProps = InputPhoneBaseProps & InputFieldProps; declare const InputPhone: React.ForwardRefExoticComponent React.ReactNode) | undefined; mask?: string | (string | RegExp)[] | undefined; maskPlaceholder?: string | null | undefined; onChangeText?: ((nextValue: string) => void) | undefined; placeholder: string; testID?: string | undefined; value?: string | undefined; hideLabel?: boolean | undefined; inlineLabel?: boolean | undefined; borderWidth?: keyof import("../..").ThemeBorderWidths | undefined; disableSearch?: boolean | undefined; centerInputText?: boolean | undefined; } & React.InputHTMLAttributes & React.RefAttributes>; export default InputPhone;