declare function asyncAutoRetry(action: () => Promise, options?: { count?: number; isNeedRetry?: (error: any) => boolean; }): Promise; export { asyncAutoRetry };