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