import { FC } from 'react'; import { SelectProps } from '../../../Select'; export type PhoneFieldSelectProps = Omit; /** * PhoneFieldSelect is a specialized Select component used inside PhoneField * to choose a country code. * * It is tightly integrated with PhoneField and TextField contexts: * - Reads the current country code from PhoneField context * - Updates the PhoneField country code when a new value is selected * - Inherits visual size from the surrounding TextField * * The component acts as a controlled Select: * - `value` is driven by PhoneField context * - `onSelectValue` is composed: both local and PhoneField handlers are called * * This component is not intended to be used standalone. * It should always be rendered within a PhoneField. */ export declare const PhoneFieldSelect: FC;