import { HttpService } from '@nestjs/axios'; export declare class AppService { private httpService; constructor(httpService: HttpService); fetchData(): Promise; fetchDataWithCustomRetry(): Promise; fetchDataWithExponentialBackoff(): Promise; fetchDataWithRetryCondition(): Promise; fetchDataWithOnRetryCallback(): Promise; }