import type { Remotes } from '../types'; declare global { interface JQueryStatic { /** * Retrieves information regarding the public IP address supplied * If no address is supplied, will return information regarding * the client's public address * * @param address */ ipInfo(address?: string): Promise; /** * Retrieves information regarding the US zip code supplied if such information is available * * @param zipCode */ zipInfo(zipCode: string): Promise; } } export {};