export declare const normalizePhoneNumber: (value?: string | null, defaultCountry?: string | null) => string | undefined; export declare const phoneNumberToParts: (value?: string | null, defaultCountry?: string | null) => { cc: string; subscriber: string; } | undefined;