import { HttpService } from '@nestjs/axios';
import { ConfigService } from '@nestjs/config';
import { GetInfoByIdsDto } from './dto/get-info-by-ids.dto';
import { GetPriceDto } from './dto/get-price.dto';
export declare class CrmService {
    private readonly configService;
    private readonly httpService;
    private readonly logger;
    private readonly crmApiUrl;
    private readonly APIKey;
    constructor(configService: ConfigService, httpService: HttpService);
    getPrice(body: GetPriceDto): Promise<{
        prices: any;
        error?: undefined;
        message?: undefined;
    } | {
        error: boolean;
        message: any;
        prices?: undefined;
    }>;
    getInfoByIds(body: GetInfoByIdsDto): Promise<{
        products: any[];
        error?: undefined;
        message?: undefined;
    } | {
        error: boolean;
        message: any;
        products?: undefined;
    }>;
    private _transformOrderToBody;
}
