export declare const getPhoneNumberParts: (phoneNumber: string, codesList: string[]) => [string | undefined, string]; export declare const cleanSubscriberNumber: (phoneNumber: string) => string; export declare const getCountry: (countryCode: string, number: string) => import("libphonenumber-js").CountryCode | undefined; export declare const formatPhoneNumber: (numberToFormat: string, countryCode?: string, showCountryCode?: boolean) => string; export declare const convertToCallbackParameter: (codePart: string | undefined, numberPart: string) => string; interface PhoneFormatOptions { nationalFormat?: boolean; } export declare const formatPhone: (value: string, { nationalFormat }?: PhoneFormatOptions) => string | undefined; export default getPhoneNumberParts; //# sourceMappingURL=utils.d.ts.map