import { FC } from 'react'; import { TextFieldInputProps } from '../../../TextField'; export type PhoneFieldInputProps = TextFieldInputProps; /** * `PhoneFieldInput` is the input element used within `PhoneField`. * * It renders a telephone input based on `TextFieldInput`, applies the appropriate * `type` and `inputMode` for numeric phone entry, and forwards refs to the * underlying native input. */ export declare const PhoneFieldInput: FC;