import { IOrganization } from '@metad/contracts'; import { CommandBus, ICommandHandler } from '@nestjs/cqrs'; import { RoleService } from '../../../role/role.service'; import { UserService } from '../../../user/user.service'; import { UserOrganizationService } from '../../../user-organization/user-organization.services'; import { OrganizationService } from '../../organization.service'; import { OrganizationCreateCommand } from '../organization.create.command'; export declare class OrganizationCreateHandler implements ICommandHandler { private readonly commandBus; private readonly organizationService; private readonly userOrganizationService; private readonly userService; private readonly roleService; constructor(commandBus: CommandBus, organizationService: OrganizationService, userOrganizationService: UserOrganizationService, userService: UserService, roleService: RoleService); execute(command: OrganizationCreateCommand): Promise; }