import type { CountryItem } from "../types"; export declare const sanitizeDigits: (input: string) => string; export declare const defaultCountry: () => CountryItem; export declare const getCountryByCode: (code?: string | null) => CountryItem | null; export declare const getCountryByDialPrefix: (phone: string) => CountryItem | null; export declare const resolveCountryFromPhone: (phone: string, userSelectedCode: string | null) => CountryItem; export declare const getLocalDigits: (phone: string, dialCode: string) => string; export declare const filterCountries: (searchText: string) => ReadonlyArray; //# sourceMappingURL=phoneCountry.d.ts.map