import { Debugger } from "debug"; import { IpHistory } from "./types"; /** * Export a debug module for the package. * @type {debug.Debugger} */ export declare const debug: Debugger; /** * Pauses for a specified duration. * * @param {number} ms * @return {Promise} */ export declare const waitForTimeout: (ms: number) => Promise; /** * Slower devices can take a while to reconnect, so loop to try get a connection. * * @param {number} maxAttempts * @return {Promise} */ export declare const hasConnection: (maxAttempts?: number) => Promise; /** * Pops the last ip history from a history set and attempts to return the ip attribute. * * @param {Set} history * @return {string | undefined} */ export declare const getLastIp: (history: Set) => string | undefined; //# sourceMappingURL=utils.d.ts.map