import { ConfigService } from "@nestjs/config";
import { HttpService } from "@nestjs/axios";
export declare class ApiService {
    private readonly configService;
    private readonly httpService;
    private readonly logger;
    constructor(configService: ConfigService, httpService: HttpService);
    postData(req: any, end_point: string): Promise<any>;
    postDataV3(req: any, end_point: string, hostname: string): Promise<any>;
}
