import { IFeature, IFeatureOrganization, IPagination } from '@metad/contracts'; import { CommandBus } from '@nestjs/cqrs'; import { FeatureOrganizationService } from './feature-organization.service'; import { FeatureService } from './feature.service'; import { CreateFeatureToggleDTO, FeatureOrganizationQueryDTO } from './dto'; import { RelationsQueryDTO } from '../shared/dto'; export declare class FeatureToggleController { private readonly _featureService; private readonly _featureOrganizationService; private readonly _commandBus; constructor(_featureService: FeatureService, _featureOrganizationService: FeatureOrganizationService, _commandBus: CommandBus); getFeatureToggleDefinitions(): Promise; getParentFeatureList(options: RelationsQueryDTO): Promise>; getFeaturesOrganization(params: FeatureOrganizationQueryDTO): Promise>; findAll(): Promise>; enabledDisabledFeature(input: CreateFeatureToggleDTO[]): Promise; }