/// import { Country } from '../../types/index.js'; export default function PhoneFilter({ onPhoneChange, onCountryChange, selectedPhone, selectedCountry, countriesOptions, isCountriesLoading, }: { onPhoneChange: (phone: string) => void; onCountryChange: (countryId: string) => void; selectedPhone?: string; selectedCountry?: Country; countriesOptions: Country[]; isCountriesLoading: boolean; }): import("react").JSX.Element;