import { HttpService } from '@nestjs/axios'; import { AxiosInterceptor } from './axios.interceptor'; import { AxiosFulfilledInterceptor } from './interfaces'; import type { AxiosRequestConfig } from 'axios'; export declare class RequestUniqueIdInterceptor extends AxiosInterceptor { constructor(httpService: HttpService); protected requestFulfilled(): AxiosFulfilledInterceptor; }