import { ConfigService } from '@nestjs/config'; import { AuthenticationModuleOptions } from '../../authentication'; import { BaseHttpService } from '../base-http.service'; /** * LunchRouletteService * * Service client for interacting with the LunchRoulette domain. * Inherits logging, authentication, and environment-sensitive URL resolution from `BaseHttpService`. */ export declare class LunchRouletteService extends BaseHttpService { /** * Constructs a LunchRoulette service client. * * @param {AuthenticationModuleOptions} authenticationOptions - Authentication options (provided by DI). * @param {ConfigService} configService - Global NestJS config service for environment detection. */ constructor(authenticationOptions: AuthenticationModuleOptions, configService: ConfigService); }