import { IFeatureOrganization } from '@metad/contracts'; import { ICommandHandler } from '@nestjs/cqrs'; import { FeatureOrganizationService } from './../../../feature/feature-organization.service'; import { TenantFeatureOrganizationCreateCommand } from '../tenant-feature-organization.create.command'; export declare class TenantFeatureOrganizationCreateHandler implements ICommandHandler { private readonly _featureOrganizationService; constructor(_featureOrganizationService: FeatureOrganizationService); execute(command: TenantFeatureOrganizationCreateCommand): Promise; }