import type { phone, PhoneResult } from '@gibme/phone'; type Options = { country: string; validateMobilePrefix: boolean; strictDetection: boolean; }; declare global { interface JQueryStatic { /** * Normalizes phone numbers into E.164 format * @param number * @param options */ phone(number: string, options?: Partial): PhoneResult; } interface Window { phone: typeof phone; } } export {};