import { HttpStatus } from '@nestjs/common';
import { Logger } from 'pino-nestjs';
import { BusinessConfigService } from './businessConfig.service';
import { DeviceService } from '../devices/device.service';
import { GeoService } from '../devices/geo.service';
export declare class BusinessConfigController {
    private readonly configService;
    private readonly deviceService;
    private readonly geoService;
    private readonly logger;
    constructor(configService: BusinessConfigService, deviceService: DeviceService, geoService: GeoService, logger: Logger);
    getConfig(req: any): Promise<{
        status: boolean;
        statusCode: HttpStatus;
        data: Record<string, any>;
    }>;
    private trackDevice;
}
