export declare function retryAsync<T>(asyncFn: () => Promise<T>, reties?: number): Promise<T>;
