import { Node } from "../..";
/**
 * syncPoolState fetches the state of the pool the node is running on.
 * The query gets called with a backoff strategy which increases by
 * 10 seconds with every failed call.
 * This method will run indefinitely if the query fails all the time
 * because without the newest state the node can't continue.
 *
 * @method syncPoolState
 * @param {Node} this
 * @return {Promise<void>}
 */
export declare function syncPoolState(this: Node): Promise<void>;
