import { ConfigService } from '@nestjs/config'; import { AuthenticationModuleOptions } from '../../authentication'; import { BaseHttpService } from '../base-http.service'; /** * IdeasService * * Service client for interacting with the Ideas domain. * Inherits logging, authentication, and environment-sensitive URL resolution from `BaseHttpService`. */ export declare class IdeasService extends BaseHttpService { /** * Constructs a Ideas 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); }