import { IOrganizationContact } from '@metad/contracts'; import { ICommandHandler } from '@nestjs/cqrs'; import { OrganizationContactCreateCommand } from '../organization-contact-create.command'; import { OrganizationContactService } from '../../organization-contact.service'; export declare class OrganizationContactCreateHandler implements ICommandHandler { private readonly organizationContactService; constructor(organizationContactService: OrganizationContactService); execute(command: OrganizationContactCreateCommand): Promise; }