import { FC } from 'react'; import { SelectOptionProps } from '../../../Select'; import { CountryCode } from 'libphonenumber-js'; export type PhoneFieldSelectOptionProps = SelectOptionProps; /** * PhoneFieldSelectOption represents a single selectable country option * inside PhoneFieldSelectListbox. * * It is a typed wrapper around SelectOption, where the option value * is a `CountryCode` from `libphonenumber-js`. * * The component applies PhoneField-specific styles while preserving * all selection logic, keyboard interaction, and accessibility * behavior of the base SelectOption. * * This component is intended to be used only within PhoneFieldSelect. * It should not be used as a standalone option outside the PhoneField context. */ export declare const PhoneFieldSelectOption: FC;