export declare const forceRetry: <T>(task: () => Promise<T>, count?: number, predicate?: (error: unknown) => boolean) => Promise<T>;
