/** * Calls fn and then retries once after 500ms, again after 1500ms, and again after 4000ms */ export declare const retry3: (fn: () => ReturnType_1, onRetry?: (_err: any) => void) => Promise;