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