/** * Retry given function for n times. * * See also: {@link retry} */ export declare function asyncRetry(func: () => Promise, n: number): Promise;