declare function checkPhoneNumberIsPossible(phoneNumberPageHtml: string): boolean; declare function checkPhoneNumberIsValid(phoneNumberPageHtml: string): boolean; declare function checkPhoneNumberIsValidForRegion(phoneNumberPageHtml: string): boolean; declare function checkPhoneNumberIsMobileType(phoneNumberPageHtml: string): boolean; declare function checkPhoneNumberIsFixedLineType(phoneNumberPageHtml: string): boolean; declare function checkPhoneNumberIsTollFeeType(phoneNumberPageHtml: string): boolean; declare function scrapePhoneCarrierFrom(phoneNumberPageHtml: string): string; declare function scrapePhoneLocation(phoneNumberPageHtml: string): string; declare function scrapePhoneNumberRegion(phoneNumberPageHtml: string): string; declare function scrapePhoneNationalFormat(phoneNumberPageHtml: string): string; declare function scrapePhoneInternationalFormat(phoneNumberPageHtml: string): string; declare function getPhonePrefixFrom(phoneInternationalFormat: string): string; export { checkPhoneNumberIsPossible, checkPhoneNumberIsValid, checkPhoneNumberIsValidForRegion, checkPhoneNumberIsMobileType, checkPhoneNumberIsFixedLineType, checkPhoneNumberIsTollFeeType, scrapePhoneCarrierFrom, scrapePhoneLocation, scrapePhoneNumberRegion, scrapePhoneNationalFormat, scrapePhoneInternationalFormat, getPhonePrefixFrom, };