import { Node } from "../..";
/**
 * waitForUploadInterval waits until the upload interval of the current
 * round has passed. The node waits, because during this time no new round
 * will start. Only after the upload interval the next uploader can start
 * the next round.
 *
 * @method waitForUploadInterval
 * @param {Node} this
 * @return {Promise<void>}
 */
export declare function waitForUploadInterval(this: Node): Promise<void>;
