/** * phone number validation - global validation from library will check if is a valid phone number. * @param phone * @returns boolean */ export declare const isValidPhone: (phoneNumber: string) => boolean; export declare const addCountryCodeIndicator: (phoneNumber: string) => string;