import { Metadata, Labels, Props as BaseProps, State, Value, ExternalValue, DefaultInputComponentProps } from '../index.d.js'; export { Country, Value } from '../index.d.js'; type Props = BaseProps & { metadata: Metadata; labels: Labels; } type PhoneInputWithCountrySelectType = React.ComponentClass, State>>; declare const PhoneInputWithCountrySelect: PhoneInputWithCountrySelectType; export default PhoneInputWithCountrySelect; export function formatPhoneNumber(value: Value | ExternalValue, metadata: Metadata): string; export function formatPhoneNumberIntl(value: Value | ExternalValue, metadata: Metadata): string; export { default as parsePhoneNumber, isValidPhoneNumber, isPossiblePhoneNumber, getCountryCallingCode, getCountries, isSupportedCountry, PhoneNumber } from 'libphonenumber-js/core';