export default class { /** Returns true if the input is a potentially-valid North American phone number. */ static isValidNorthAmericanNumber(input: string): boolean; /** * Formats a phone number in standard E164 format. If it isn’t recognized as a phone * number, the input is returned unchanged. */ static formatPhoneNumber(input: string): string; }