import { CountryDetails } from './InputPhone.types.js';
import 'libphonenumber-js';
import 'react';
import '../Select/Select.types.js';
import '@radix-ui/react-select';

declare const GROUP_NAME = "input-phone";
declare const DEFAULT_COUNTRY_CODE = "FR";
declare const countryByCountryCode: Record<string, CountryDetails>;
declare const supportedCountries: CountryDetails[];

export { DEFAULT_COUNTRY_CODE, GROUP_NAME, countryByCountryCode, supportedCountries };
