/** * Retry async function for a specified number of times, sleeping between each try * * @typedef T The return type of the action to retry * @param {() => Promise} action Function to be executed * @param {number} retriesAllowed Retries allowed. Default to 3 * @param {number} sleepBetweenRetries Seconds to sleep between tries. Default to 1 * @returns {Promise} Result of action */ export declare function retryAsync(action: () => Promise, retriesAllowed?: number, sleepBetweenRetries?: number): Promise;