import React from 'react'; import { ISelect, SelectOption } from './types'; /** * PhonePrefix Component * * A customizable phone prefix selector component with search functionality, * keyboard navigation, and full accessibility support. * * @example * ```tsx * console.log('Selected:', option)} * /> * ``` */ export declare const PhonePrefix: ({ options, size, field, Icon, defaultValue, firstOption, valueKey, labelKey, flagKey, flagType, onClick, onSelect, onSearch, placeholder, disabled, loading, error, className, searchable, maxHeight, placement, "data-testid": testId, ...props }: ISelect) => React.JSX.Element;