import { Value as ValueT } from '../select/types'; import { Value, Country } from './types'; export declare const iso2FlagEmoji: (iso: string) => string | undefined; export declare const sanitize: (value?: string) => string; export declare const getPhoneNumberWithCountryDialCode: (value: Value) => string | undefined; export declare const countrySelectFilterOptions: (options: ValueT, filterValue: string, excludeOptions?: ValueT | undefined | null, params?: { valueKey: string; labelKey: string; }) => ValueT; export declare const getDefaultValue: (countries?: Country[] | undefined) => { country: Country; phoneNumber: string; };