import { ICommandHandler } from '@nestjs/cqrs'; import { FeatureOrganizationService } from '../../feature-organization.service'; import { FeatureToggleUpdateCommand } from '../feature-toggle.update.command'; export declare class FeatureToggleUpdateHandler implements ICommandHandler { private readonly _featureOrganizationService; constructor(_featureOrganizationService: FeatureOrganizationService); execute(command: FeatureToggleUpdateCommand): Promise; }