import { CommandBus } from '@nestjs/cqrs'; import { FeatureService } from './feature.service'; export declare class FeatureController { private readonly featureService; private readonly commandBus; constructor(featureService: FeatureService, commandBus: CommandBus); upgradeFeatures(input: any): Promise; }